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) {