Skip to content

Commit 36b1875

Browse files
committed
Fix regreesion in 8.3.10
1 parent 2561bf5 commit 36b1875

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The following is a list of notable changes to the Mantine DataTable component.
44
Minor versions that are not listed in the changelog are bug fixes and small improvements.
55

6-
## 8.3.10 (2025-12-15)
6+
## 8.3.11 (2025-12-15)
77

88
- Fix [#784](https://github.com/icflorescu/mantine-datatable/issues/784) - pagination still producing **some** output when recordsLength is 0
99
- Update deps to ensure compatibility with Mantine 8.3.10

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mantine-datatable",
3-
"version": "8.3.10",
3+
"version": "8.3.11",
44
"description": "The lightweight, dependency-free, dark-theme aware table component for your Mantine UI data-rich applications, featuring asynchronous data loading support, pagination, intuitive Gmail-style additive batch rows selection, column sorting, custom cell data rendering, row expansion, nesting, context menus, and much more",
55
"keywords": [
66
"mantine",

package/DataTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ export function DataTable<T>({
434434
</Table>
435435
</TableWrapper>
436436
</DataTableScrollArea>
437-
{page && recordsLength && (
437+
{!!(page && recordsLength) && (
438438
<DataTablePagination
439439
className={classNames?.pagination}
440440
style={styles?.pagination}

0 commit comments

Comments
 (0)