From 88d258cd06da265c8d96b7da2e1b53ca154f28d5 Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 7 Dec 2025 20:50:38 +0100 Subject: [PATCH] Add toggle functionality to expand/collapse all items in `CalculationDumps` and adjust tab order in Config page --- src/frontend/src/components/layout/config/CalculationDumps.vue | 2 ++ src/frontend/src/pages/Config.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/components/layout/config/CalculationDumps.vue b/src/frontend/src/components/layout/config/CalculationDumps.vue index e463d54..77b3c2c 100644 --- a/src/frontend/src/components/layout/config/CalculationDumps.vue +++ b/src/frontend/src/components/layout/config/CalculationDumps.vue @@ -10,6 +10,7 @@
Close + {{ expand === true ? 'Collapse all items' : 'Expand all items' }}
@@ -65,6 +66,7 @@ export default { return { showModal: false, dump: null, + expand: false, pageSize: 20, pagination: {page: 1, pageCount: 1, totalCount: 1}, diff --git a/src/frontend/src/pages/Config.vue b/src/frontend/src/pages/Config.vue index ff781c9..0407c73 100644 --- a/src/frontend/src/pages/Config.vue +++ b/src/frontend/src/pages/Config.vue @@ -96,8 +96,8 @@ export default { } if (this.activeUserStore.isService) { - tabs.push(this.appsTab); tabs.push(this.calculationDump); + tabs.push(this.appsTab); } if (this.activeUserStore.isRightManagement) {