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
mr13.3
Debora Crescenzo 8 months ago
parent 3665f43ee0
commit aa60b21a2b

@ -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 () {

Loading…
Cancel
Save