CSR-1027 Format
This commit is contained in:
parent
284f239992
commit
266a871b50
1 changed files with 5 additions and 2 deletions
|
|
@ -104,11 +104,14 @@ export default {
|
|||
replaceOptions(replaceOptions) {
|
||||
// For rear window, in case user chooses slider and later comes back
|
||||
// with a vehicle with only stationary
|
||||
if (!Array.isArray(this.selectedValues) && !replaceOptions.includes(this.selectedValues)) {
|
||||
if (
|
||||
!Array.isArray(this.selectedValues) &&
|
||||
!replaceOptions.includes(this.selectedValues)
|
||||
) {
|
||||
this.selectedValues = null;
|
||||
this.updateSelectedValues();
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
components: {
|
||||
buttonQuestion,
|
||||
|
|
|
|||
Loading…
Reference in a new issue