Restore previous state when failing to change video verification state
When video verification can not be enabled or disabled the previous state is set again in the JavaScript share object. This ensures that the UI will not reflect a misleading state. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
This commit is contained in:
parent
c423a50938
commit
01ccbe68ff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -291,6 +291,14 @@ export default {
|
|||
}
|
||||
break
|
||||
}
|
||||
case 'sendPasswordByTalk': {
|
||||
// show error
|
||||
this.$set(this.errors, property, message)
|
||||
|
||||
// Restore previous state
|
||||
this.share.sendPasswordByTalk = !this.share.sendPasswordByTalk
|
||||
break
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue