From 56f26e6ebe8163ac15727b400e032a57f3c0d426 Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Wed, 11 Oct 2023 15:39:14 +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 fc922eab5..77e3d7a60 100644 --- a/public/js/components/filter/Filter.js +++ b/public/js/components/filter/Filter.js @@ -181,7 +181,7 @@ export const CoreFilterCmpt = { methods: { reloadTable() { if (this.tableOnly) - this.tabulator.reload(); + this.tabulator.setData(); else this.getFilter(); },