@pnkx-lib/ui 1.9.264 → 1.9.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/ui/index.js +2 -3
- package/package.json +1 -1
package/es/ui/index.js
CHANGED
|
@@ -5491,7 +5491,7 @@ const Table = ({
|
|
|
5491
5491
|
onDoubleClick: handleDoubleClickRow(record, onDoubleClickRow)
|
|
5492
5492
|
}),
|
|
5493
5493
|
locale: {
|
|
5494
|
-
emptyText: /* @__PURE__ */ jsx(EmptyTable, {})
|
|
5494
|
+
emptyText: loading ? null : /* @__PURE__ */ jsx(EmptyTable, {})
|
|
5495
5495
|
},
|
|
5496
5496
|
scroll: { y: tableHeight },
|
|
5497
5497
|
size,
|
|
@@ -5505,8 +5505,7 @@ const Table = ({
|
|
|
5505
5505
|
pageSize: filters?.size,
|
|
5506
5506
|
total: totalItems,
|
|
5507
5507
|
onChange: (page) => onChangePage(page),
|
|
5508
|
-
onShowSizeChange: (_, size2) => onChangePageSize(size2)
|
|
5509
|
-
size
|
|
5508
|
+
onShowSizeChange: (_, size2) => onChangePageSize(size2)
|
|
5510
5509
|
}
|
|
5511
5510
|
)
|
|
5512
5511
|
]
|