From a592dd897e6b86389400f039ed3611dda072a869 Mon Sep 17 00:00:00 2001 From: afc163 Date: Fri, 23 Apr 2021 16:58:36 +0800 Subject: [PATCH] chore: fix table demo close #30284 --- components/table/demo/virtual-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/demo/virtual-list.md b/components/table/demo/virtual-list.md index 849120c3d2..d4e8c0a415 100644 --- a/components/table/demo/virtual-list.md +++ b/components/table/demo/virtual-list.md @@ -54,7 +54,7 @@ function VirtualTable(props: Parameters[0]) { const resetVirtualGrid = () => { gridRef.current.resetAfterIndices({ columnIndex: 0, - shouldForceUpdate: false, + shouldForceUpdate: true, }); };