Skip to content

Commit d7a33e4

Browse files
committed
Fix syntax error in SelectInput.vue mounted method
- Added missing if statement wrapper around init handling - Fixes CI build error on line 92
1 parent 79135cd commit d7a33e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Inputs/SelectInput/SelectInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export default {
121121
},
122122
},
123123
mounted() {
124-
124+
if (this.init) {
125125
if (Array.isArray(this.init)) {
126126
this.selected = this.init[0];
127127
this.otherInput = this.init[1];

0 commit comments

Comments
 (0)