From b7229791d9d6e7f0d4757d6767dfb2d709aa5611 Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Tue, 2 Apr 2024 09:55:27 +0200 Subject: [PATCH] Add prop filterId for CoreFilterCmpt --- public/js/components/filter/Filter.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/js/components/filter/Filter.js b/public/js/components/filter/Filter.js index 64a75c910..ae713719c 100644 --- a/public/js/components/filter/Filter.js +++ b/public/js/components/filter/Filter.js @@ -53,6 +53,7 @@ export const CoreFilterCmpt = { type: String, required: true }, + filterId: String, tabulatorOptions: Object, tabulatorEvents: Array, tableOnly: Boolean, @@ -415,6 +416,8 @@ export const CoreFilterCmpt = { // Always needed parameters apiFunctionParameters.filterUniqueId = FHC_JS_DATA_STORAGE_OBJECT.called_path + "/" + FHC_JS_DATA_STORAGE_OBJECT.called_method; apiFunctionParameters.filterType = this.filterType; + if (this.filterId) + apiFunctionParameters.filterUniqueId += '#' + this.filterId; // Assign parameters to the FetchCmpt binded properties this.fetchCmptApiFunctionParams = apiFunctionParameters;