CSR-1952: revert watcher to fix QA

This commit is contained in:
Adam Caouette 2024-02-13 08:29:01 -05:00
parent e19684dd68
commit 74e7669d31

View file

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