From 5ce09d2789c7d3ac2bee71d152517d1268671513 Mon Sep 17 00:00:00 2001 From: Giancarlo Errigo Mattos Date: Wed, 22 Apr 2026 14:29:44 +0200 Subject: [PATCH] MT#64825 Erroneous Manager Secretary and Auto Attendant checks * Replaces PROFILE_ATTRIBUTES_MAP.* lookups for PROFILE_ATTRIBUTE_MAP.managerSecretary and PROFILE_ATTRIBUTE_MAP.autoAttendant one the Manager Secretary and Auto Attendant submenu checks Change-Id: I4b5395afa037bcd043357965a4f56d7d8d92de7a (cherry picked from commit 628f6f2b5094fe5737323ec57606fb6fb94252c5) --- src/components/CscMainMenuTop.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CscMainMenuTop.vue b/src/components/CscMainMenuTop.vue index 518ef8c2..af6aee10 100644 --- a/src/components/CscMainMenuTop.vue +++ b/src/components/CscMainMenuTop.vue @@ -263,13 +263,13 @@ export default { to: '/user/extension-settings/ms-configs', icon: 'arrow_forward', label: this.$t('Manager Secretary'), - visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTES_MAP.manager_secretary) + visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTE_MAP.managerSecretary) }, { to: '/user/extension-settings/auto-attendant', icon: 'dialpad', label: this.$t('Auto Attendant'), - visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTES_MAP.autoAttendant) + visible: this.isPbxEnabled && this.hasSubscriberProfileAttribute(PROFILE_ATTRIBUTE_MAP.autoAttendant) } ] },