From 47293a81d343c724ae877116975858295d6ddb75 Mon Sep 17 00:00:00 2001 From: Johann Hoffmann Date: Thu, 13 Feb 2025 13:40:24 +0100 Subject: [PATCH] avoid persisting invisible column definitions on funktionen table --- public/js/components/Cis/Profil/MitarbeiterProfil.js | 4 ++++ public/js/components/Cis/Profil/MitarbeiterViewProfil.js | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/public/js/components/Cis/Profil/MitarbeiterProfil.js b/public/js/components/Cis/Profil/MitarbeiterProfil.js index 424e78549..8bba26ea2 100644 --- a/public/js/components/Cis/Profil/MitarbeiterProfil.js +++ b/public/js/components/Cis/Profil/MitarbeiterProfil.js @@ -34,6 +34,10 @@ export default { // tabulator options funktionen_table_options: { + persistenceID: "filterTableMaProfilFunktionen", + persistence: { + columns: false + }, height: 300, layout: "fitColumns", responsiveLayout: "collapse", diff --git a/public/js/components/Cis/Profil/MitarbeiterViewProfil.js b/public/js/components/Cis/Profil/MitarbeiterViewProfil.js index 63c9b84ba..baf6fe745 100644 --- a/public/js/components/Cis/Profil/MitarbeiterViewProfil.js +++ b/public/js/components/Cis/Profil/MitarbeiterViewProfil.js @@ -20,6 +20,10 @@ export default { collapseIconFunktionen: true, funktionen_table_options: { + persistenceID: "filterTableMaViewProfilFunktionen", + persistence: { + columns: false + }, height: 300, layout: "fitColumns", responsiveLayout: "collapse",