MT#62916 Add missing code after conflicts resolution

When merging commit
3665f43ee0
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 aa60b21a2b)
mr13.3.1
Debora Crescenzo 5 months ago committed by Crescenzo Debora
parent f8a855c4cf
commit 89afa94a59

@ -284,6 +284,21 @@ export default {
} else if (state === RequestState.failed) { } else if (state === RequestState.failed) {
showGlobalError(this.deviceRemovalError) 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 () { async created () {

Loading…
Cancel
Save