Skip to content

Commit 4d6b130

Browse files
committed
Fix issue where row selection toggle wasn’t being set/displayed properly
1 parent 9b2f92a commit 4d6b130

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/components/billingRecord/IFXBillingRecordHeaderDecimal.vue

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ export default {
4343
required: true,
4444
},
4545
},
46-
mounted() {
47-
this.localRowSelectionToggle = this.rowSelectionToggle.concat()
48-
},
46+
mounted() {},
4947
data() {
5048
return {
5149
localRowSelectionToggle: [],
@@ -69,7 +67,14 @@ export default {
6967
this.showSummaryDetail = !this.showSummaryDetail
7068
},
7169
},
72-
watch: {},
70+
watch: {
71+
rowSelectionToggle: {
72+
handler(value) {
73+
this.localRowSelectionToggle = value.concat()
74+
},
75+
immediate: true,
76+
},
77+
},
7378
}
7479
</script>
7580
<template>

0 commit comments

Comments
 (0)