From 1e449e6fd14d02f2727cb21d0b4ddeeb0f95989c Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Wed, 11 Oct 2023 15:38:30 +0200 Subject: [PATCH] Bugfix: FilterCmpt: reload function --- public/js/components/filter/Filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/components/filter/Filter.js b/public/js/components/filter/Filter.js index 2b6a4fe6d..6f074cc72 100644 --- a/public/js/components/filter/Filter.js +++ b/public/js/components/filter/Filter.js @@ -173,7 +173,7 @@ export const CoreFilterCmpt = { methods: { reloadTable() { if (this.tableOnly) - this.tabulator.reload(); + this.tabulator.setData(); else this.getFilter(); },