We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bd07fea + 1743d3a commit 8ec99d7Copy full SHA for 8ec99d7
src/components/Shared/CalendarPicker.vue
@@ -11,8 +11,8 @@
11
:multiple="multiple"
12
:clearable="clearable"
13
:filter-by="selectFilterBy"
14
- :input-label="this.inputLabel"
15
- :label-outside="this.inputLabel === ''"
+ :input-label="inputLabel"
+ :label-outside="inputLabel === ''"
16
@option:selected="change"
17
@option:deselected="remove">
18
<template #option="{ id }">
@@ -86,7 +86,7 @@ export default {
86
},
87
valueIds() {
88
if (Array.isArray(this.value)) {
89
- return this.value.map(({ id }) => id)
+ return this.value.filter(v => v).map(({ id }) => id)
90
}
91
92
return this.value.id
0 commit comments