Skip to content

Commit

Permalink
Fix table header order
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Oct 29, 2023
1 parent 7361d50 commit 476097f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
display: flex;
justify-content: space-between;
border-bottom: 1px solid $ui-03;
padding: spacing.$spacing-04 0 spacing.$spacing-04 spacing.$spacing-04;
padding: spacing.$spacing-04 spacing.$spacing-05;
padding-right: 0;
background-color: $ui-01;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const ListsDashboard: React.FC = () => {
];

if (showCohortType) {
tableHeaders.push({ id: 2, key: 'type', header: t('listType', 'List type') });
tableHeaders.splice(1, 0, { id: 2, key: 'type', header: t('listType', 'List type') });
}

return (
Expand Down

0 comments on commit 476097f

Please sign in to comment.