Skip to content

Commit

Permalink
fix: switch tags location and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maximeperrault authored and maximeperraultdev committed Dec 19, 2024
1 parent 25a6c13 commit ac347ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export function Filters({ orientation = 'row' }: { orientation?: Orientation })
</FilterWrapper>
</FiltersContainer>
<TagsContainer>
{orientation === 'row' && [seaFrontTags, specificPeriodDatePicker, controlUnitTags, regulatoryThemesTags]}
{orientation === 'row' && [specificPeriodDatePicker, seaFrontTags, controlUnitTags, regulatoryThemesTags]}

{orientation === 'row' && hasFilters && <ReinitializeFiltersButton onClick={resetFilter} />}
</TagsContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function EditDashboardCell({ id }: { id: number }) {
data-cy={`edit-dashboard-${id}`}
Icon={Icon.Edit}
onClick={edit}
title="Editer le dashboard"
title="Éditer le tableau de bord"
/>
)
}
Expand Down

0 comments on commit ac347ca

Please sign in to comment.