fix: model instances always update by cache

This commit is contained in:
jialin
2025-05-30 11:23:25 +08:00
parent 40020df865
commit 283189a17c
3 changed files with 12 additions and 18 deletions
@@ -136,9 +136,6 @@ const TableRow: React.FC<
}, [record, loadChildren]);
const filterUpdateChildrenHandler = () => {
if (!expandedRowKeys?.includes(record[rowKey])) {
return;
}
const dataList = _.filter(tableContext.allChildren, (data: any) => {
return _.get(data, [childParentKey]) === _.get(record, [rowKey]);
});