Update to disable button when button question cleared programmatically
This commit is contained in:
parent
811ac473f1
commit
005223b2fc
1 changed files with 8 additions and 3 deletions
|
|
@ -346,9 +346,14 @@ export default {
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selectedProvider() {
|
selectedProvider() {
|
||||||
if (this.selectedProvider && this.selectedProvider !== SAFELITE_PROVIDER) {
|
if (this.selectedProvider) {
|
||||||
this.$refs[this.CANCEL_CLAIM_REF_NAME].openModal();
|
if (this.selectedProvider !== SAFELITE_PROVIDER) {
|
||||||
this.selectedProvider = '';
|
this.$refs[this.CANCEL_CLAIM_REF_NAME].openModal();
|
||||||
|
this.selectedProvider = '';
|
||||||
|
this.$refs.siteFooter.disableForwardButton();
|
||||||
|
} else {
|
||||||
|
this.$refs.siteFooter.enableForwardAction();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
nextStepsBody(newValue, oldValue) {
|
nextStepsBody(newValue, oldValue) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue