From b2174549c738bdb8ba210e75f55400297e0b4a10 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 6 Oct 2025 18:48:13 +0300 Subject: [PATCH] chore(collections/table): avoid rendering if rows didn't load yet --- apps/client/src/widgets/collections/table/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/collections/table/index.tsx b/apps/client/src/widgets/collections/table/index.tsx index d99d912d6..2a40c594c 100644 --- a/apps/client/src/widgets/collections/table/index.tsx +++ b/apps/client/src/widgets/collections/table/index.tsx @@ -54,7 +54,7 @@ export default function TableView({ note, noteIds, notePath, viewConfig, saveCon return (
- {persistenceProps && ( + {rowData !== undefined && persistenceProps && ( <>