From 89afa94a5978ce777c8af6bc06f3b9791272edb6 Mon Sep 17 00:00:00 2001 From: Debora Crescenzo Date: Wed, 11 Jun 2025 15:51:18 +0100 Subject: [PATCH] MT#62916 Add missing code after conflicts resolution When merging commit 3665f43ee0d37e345e50767891353fffd472c59d some lines of code where skipped during conflict resolution. This commit inserts the missign lines in file CscPbxDeviceFilters.vue NGCP-Flow: mr13.3 Change-Id: I926ae0aed09aa941ef7652e035e109ee95bcb6b3 (cherry picked from commit aa60b21a2b6c41715fea421306ced3bcaea1de43) --- src/pages/CscPagePbxDevices.vue | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/pages/CscPagePbxDevices.vue b/src/pages/CscPagePbxDevices.vue index f85e2c8f..8785c620 100644 --- a/src/pages/CscPagePbxDevices.vue +++ b/src/pages/CscPagePbxDevices.vue @@ -284,6 +284,21 @@ export default { } else if (state === RequestState.failed) { showGlobalError(this.deviceRemovalError) } + }, + deviceListState (state) { + if (state === RequestState.failed) { + showGlobalError(this.deviceListError) + } + }, + deviceModelListState (state) { + if (state === RequestState.failed) { + showGlobalError(this.deviceModelError) + } + }, + deviceProfileListState (state) { + if (state === RequestState.failed) { + showGlobalError(this.deviceProfileListError) + } } }, async created () {