Skip to content

Commit

Permalink
feat(redmine 1294487): chaged rowActionNumber to maxVisibleActions in…
Browse files Browse the repository at this point in the history
… agenda and browsing page
  • Loading branch information
subraAntoine committed Jul 9, 2024
1 parent 5696b2f commit a20045b
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 @@ -494,6 +494,7 @@ export function AgendaPage(): ReactElement {
initialState={{
pagination: { pageIndex: 0, pageSize: 6 },
}}
maxVisibleActions={2}
paginationProps={{
itemsPerPageAriaLabel: texts.resutsNbr,
itemsPerPageOptions: [
Expand All @@ -504,7 +505,6 @@ export function AgendaPage(): ReactElement {
{ label: texts.displaySpecificResultNbr(15), value: 15 },
],
}}
rowActionNumber={2}
/>
</FoldableColumnLayout>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ export const tableProps: ITableGridViewTableProps<IExampleDataType> = {
selectedCountOfRowCountRowsSelected: `{selectedCount} fichier(s) sélectionnés`,
},
manualPagination: false,
maxVisibleActions: 3,
menuLabel: 'Autres actions',
paginationProps: {
itemsPerPageAriaLabel: 'Nombre de résultats par page',
Expand All @@ -170,7 +171,6 @@ export const tableProps: ITableGridViewTableProps<IExampleDataType> = {
{ label: 'Afficher 15 résultats', value: 15 },
],
},
rowActionNumber: 3,
rowCount: 6,
};

Expand Down

0 comments on commit a20045b

Please sign in to comment.