fix: json stream data is truncated

This commit is contained in:
jialin
2025-01-20 22:08:08 +08:00
parent f94fcf58a7
commit db733ac9ce
7 changed files with 54 additions and 22 deletions
+2 -1
View File
@@ -26,6 +26,7 @@ const SealTable: React.FC<SealTableProps & { pagination: PaginationProps }> = (
onCell,
expandedRowKeys,
loading,
loadend,
expandable,
pollingChildren,
watchChildren,
@@ -117,7 +118,7 @@ const SealTable: React.FC<SealTableProps & { pagination: PaginationProps }> = (
if (!props.dataSource.length) {
return (
<div className="empty-wrapper">
<Empty image={Empty.PRESENTED_IMAGE_SIMPLE}></Empty>
<Empty image={loadend ? Empty.PRESENTED_IMAGE_SIMPLE : null}></Empty>
</div>
);
}