chore(collections/table): avoid rendering if rows didn't load yet

This commit is contained in:
Elian Doran 2025-10-06 18:48:13 +03:00
parent 19f16274ab
commit b2174549c7
No known key found for this signature in database

View File

@ -54,7 +54,7 @@ export default function TableView({ note, noteIds, notePath, viewConfig, saveCon
return (
<div className="table-view">
{persistenceProps && (
{rowData !== undefined && persistenceProps && (
<>
<Tabulator
tabulatorRef={tabulatorRef}