From 3483146c1a50f964e4950a114999746aff67175b Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Sat, 23 May 2026 15:53:38 +0200 Subject: [PATCH] resolved tabulator warnings --- public/js/components/filter/Filter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/components/filter/Filter.js b/public/js/components/filter/Filter.js index 8ae31472e..1b15666a9 100644 --- a/public/js/components/filter/Filter.js +++ b/public/js/components/filter/Filter.js @@ -347,10 +347,10 @@ export const CoreFilterCmpt = { } // Start the tabulator with the build options - this.tabulator = new Tabulator( - this.$refs.table, - tabulatorOptions - ); + this.tabulator = new Tabulator(this.$refs.table, { + ...tabulatorOptions, + debugInvalidOptions: false, + }); // If event handlers have been provided if (Array.isArray(this.tabulatorEvents) && this.tabulatorEvents.length > 0) {