From 9109ead81c051b2c518819a42da4d58cb482b59d Mon Sep 17 00:00:00 2001 From: chfhtw Date: Mon, 27 Apr 2026 09:44:11 +0200 Subject: [PATCH] bogfix: missing primevue config in dashboard admin app --- public/js/apps/Dashboard/Admin.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/js/apps/Dashboard/Admin.js b/public/js/apps/Dashboard/Admin.js index 685e1bc9c..c361c2fb4 100644 --- a/public/js/apps/Dashboard/Admin.js +++ b/public/js/apps/Dashboard/Admin.js @@ -18,6 +18,12 @@ const app = Vue.createApp({ }; } }); +app.use(primevue.config.default, { + zIndex: { + overlay: 9000, + tooltip: 8000 + } +}) app.use(PluginsPhrasen); app.directive('tooltip', primevue.tooltip); app.mount('#main'); \ No newline at end of file