WIP
This commit is contained in:
parent
22d3e1501d
commit
bb055c4806
2 changed files with 3 additions and 3 deletions
|
|
@ -118,7 +118,7 @@ export default {
|
||||||
return this.modelValue?.partNumber;
|
return this.modelValue?.partNumber;
|
||||||
},
|
},
|
||||||
set(newValue) {
|
set(newValue) {
|
||||||
const part = !newValue ? null : this.partsForSelectedTint.filter((part) => part.partNumber == newValue.value)[0]
|
const part = this.partsForSelectedTint.filter((part) => part.partNumber == newValue?.value)[0];
|
||||||
this.$emit("update:modelValue", part);
|
this.$emit("update:modelValue", part);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue