Skip to content

Commit

Permalink
[4359] Fix an issue where two pagination forms where display in tables
Browse files Browse the repository at this point in the history
Bug: #4359
Signed-off-by: Florian ROUËNÉ <[email protected]>
  • Loading branch information
frouene committed Jan 3, 2025
1 parent 00cbf2b commit 063a2bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The `start` task used in our turbo configuration is now marked as `persistent` a

=== Bug fixes

- https://github.com/eclipse-sirius/sirius-web/issues/4359[#4359] [table] Fix an issue where two pagination forms where display in tables

=== New Features

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2024 Obeo.
* Copyright (c) 2024, 2025 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -147,7 +147,7 @@ export const TableContent = memo(
enableEditing: !readOnly,
onColumnFiltersChange: setColumnFilters,
enableStickyHeader: true,
enablePagination,
enablePagination: false,
manualPagination: enablePagination,
rowCount: table.paginationData.totalRowCount,
enableRowActions: true,
Expand Down

0 comments on commit 063a2bb

Please sign in to comment.