Skip to content

Commit 957f59a

Browse files
committed
adress review comments
1 parent 015b771 commit 957f59a

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/components/OpenwbBaseCard.vue

+2-10
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,12 @@ export default {
103103
isCollapsed: this.collapsible && this.collapsed,
104104
};
105105
},
106-
watch: {
107-
collapsed(newVal) {
108-
this.isCollapsed = newVal;
109-
},
110-
},
106+
111107
methods: {
112108
toggleBody() {
113109
if (this.collapsible === true) {
114110
this.isCollapsed = !this.isCollapsed;
115-
}
116-
if (this.isCollapsed) {
117-
this.$emit("collapsed");
118-
} else {
119-
this.$emit("expanded");
111+
this.$emit(this.isCollapsed ? "collapsed" : "expanded");
120112
}
121113
},
122114
},

0 commit comments

Comments
 (0)