From a94fbeba14442dd7fe1b05bde318655540ac7651 Mon Sep 17 00:00:00 2001 From: chfhtw Date: Wed, 15 Jul 2026 11:04:21 +0200 Subject: [PATCH] Only call reloadTable if a table was loaded --- public/js/components/LVVerwaltung/Setup/Table.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/js/components/LVVerwaltung/Setup/Table.js b/public/js/components/LVVerwaltung/Setup/Table.js index 40c433595..1ea53e49a 100644 --- a/public/js/components/LVVerwaltung/Setup/Table.js +++ b/public/js/components/LVVerwaltung/Setup/Table.js @@ -296,7 +296,8 @@ export default { if (this.shouldAutoLoad) { - this.$refs.table.reloadTable(); + if (this.$refs.table.tabulator) + this.$refs.table.reloadTable(); } }, rowSelectionChanged(data) {