mirror of
https://github.com/didi/KnowStreaming.git
synced 2025-12-24 03:42:07 +08:00
For #781, Fix "The partition display is incomplete" bug
This commit is contained in:
@@ -167,8 +167,11 @@ export const ExpandedRow: any = ({ record, groupName }: any) => {
|
||||
)
|
||||
.then((data: any) => {
|
||||
if (!data) return;
|
||||
setPagination((origin: any) => {
|
||||
return { ...origin, current: data.pagination?.pageNo, pageSize: data.pagination?.pageSize };
|
||||
|
||||
setPagination({
|
||||
current: data.pagination?.pageNo,
|
||||
pageSize: data.pagination?.pageSize,
|
||||
total: data.pagination?.total,
|
||||
});
|
||||
setConsumerList(data?.bizData || []);
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user