From 8e715e0e90c4225f36fd243db06b39a6e1e5ef54 Mon Sep 17 00:00:00 2001 From: Debora Crescenzo Date: Mon, 1 Dec 2025 19:51:38 +0000 Subject: [PATCH] MT#64037 PBXGroup Custom Announcements Bugfix The custom announcements were not showing in the CF menu under the PBXGroup section because the action to load the announcements was missing from the mounting hook. Change-Id: I5813f2ce4471aa5a51ebc08ed3cdc08bde16b931 (cherry picked from commit acd9d84724d06feb2ed0f119dd901a28afba4a87) (cherry picked from commit af968417273b1819345e431570d784516856a279) --- src/pages/CscPagePbxGroupDetails.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/CscPagePbxGroupDetails.vue b/src/pages/CscPagePbxGroupDetails.vue index fab9d288..cd20826c 100644 --- a/src/pages/CscPagePbxGroupDetails.vue +++ b/src/pages/CscPagePbxGroupDetails.vue @@ -481,6 +481,7 @@ export default { } this.selectGroup(this.id) await this.loadMappingsFull(this.id) + await this.loadAnnouncements() }, beforeUnmount () { this.resetSelectedGroup() @@ -513,7 +514,8 @@ export default { ]), ...mapActions('callForwarding', [ 'loadMappingsFull', - 'createMapping' + 'createMapping', + 'loadAnnouncements' ]), ...mapMutations('pbxGroups', [ 'selectGroup',