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