From c324da393847c3b8ad7d9feff4cca7880ac20c81 Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Tue, 10 Mar 2026 21:41:43 +0100 Subject: [PATCH] fix(App.vue): update user permissions check and enhance dropdown behavior - Changed the condition for displaying the click-TT link from admin status to a more specific permission check (canManagePermissions). - Adjusted dropdown styling to improve usability by setting a maximum height and enabling vertical scrolling while hiding horizontal overflow. --- frontend/src/App.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index f539035d..74481e3a 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -30,7 +30,7 @@ 📋 {{ $t('navigation.logs') }} - + 🌐 HTTV / click-TT @@ -464,7 +464,9 @@ export default { border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); min-width: 200px; - overflow: hidden; + max-height: 70vh; + overflow-y: auto; + overflow-x: hidden; z-index: 10000; animation: dropdownFadeIn 0.2s ease; }