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: { watch: {
lineItems: { modelValue: {
handler() { handler(newValue) {
this.$emit("update:modelValue", this.lineItems); this.lineItems = deepClone(newValue);
}, },
deep: true, deep: true,
}, },