diff --git a/public/plugins/vue/tt-components/tt-table.js b/public/plugins/vue/tt-components/tt-table.js index 46f1348ed..ecfede3fe 100644 --- a/public/plugins/vue/tt-components/tt-table.js +++ b/public/plugins/vue/tt-components/tt-table.js @@ -418,7 +418,7 @@ Vue.component('tt-table', { if (this.disableFiltering) return; const filters = Object.entries(this.filters).reduce((acc, [key, value]) => { - if (!value) { + if (!value && value !== 0) { return acc; // Skip empty strings } value = JSON.parse(JSON.stringify(value)); // Deep copy to avoid Vue reactivity