From 9715d65d88eb0084f6090663595c9f6d6a750830 Mon Sep 17 00:00:00 2001 From: advplyr Date: Mon, 25 Mar 2024 16:33:30 -0500 Subject: [PATCH] Update:Go to web client buttons visible to all users #1079 --- components/app/SideDrawer.vue | 13 ++++++------- components/modals/ItemMoreMenuModal.vue | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/components/app/SideDrawer.vue b/components/app/SideDrawer.vue index f9c1cef0..b4a308dd 100644 --- a/components/app/SideDrawer.vue +++ b/components/app/SideDrawer.vue @@ -135,13 +135,12 @@ export default { }) if (this.serverConnectionConfig) { - if (this.userIsAdminOrUp) { - items.push({ - icon: 'language', - text: this.$strings.ButtonGoToWebClient, - action: 'openWebClient' - }) - } + items.push({ + icon: 'language', + text: this.$strings.ButtonGoToWebClient, + action: 'openWebClient' + }) + items.push({ icon: 'login', text: this.$strings.ButtonSwitchServerUser, diff --git a/components/modals/ItemMoreMenuModal.vue b/components/modals/ItemMoreMenuModal.vue index de63ffd4..fc72c073 100644 --- a/components/modals/ItemMoreMenuModal.vue +++ b/components/modals/ItemMoreMenuModal.vue @@ -135,7 +135,7 @@ export default { } } - if (this.isConnectedToServer && this.userIsAdminOrUp) { + if (this.isConnectedToServer) { items.push({ text: this.$strings.ButtonGoToWebClient, value: 'openWebClient',