Merge pull request #1749 from Safelite/feature/CSR-1952-ajc-try2

CSR-1952: revert watcher to fix QA
This commit is contained in:
AdamCaouetteSafelite 2024-02-13 08:35:32 -05:00 committed by GitHub
commit 3eb02682b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -790,9 +790,9 @@ export default {
},
},
watch: {
lineItems: {
handler() {
this.$emit("update:modelValue", this.lineItems);
modelValue: {
handler(newValue) {
this.lineItems = deepClone(newValue);
},
deep: true,
},