@mozaic-ds/vue 0.36.0 → 0.36.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mozaic-vue.adeo.umd.js +9 -8
- package/dist/mozaic-vue.common.js +9 -8
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.umd.js +9 -8
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/dropdown/MDropdown.vue +2 -3
package/package.json
CHANGED
|
@@ -197,9 +197,8 @@ export default {
|
|
|
197
197
|
return this.listboxValue.length.toString() + ' ' + this.tagLabel;
|
|
198
198
|
},
|
|
199
199
|
getListboxValue() {
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
: this.listboxValue !== undefined;
|
|
200
|
+
const val = this.multiple ? this.listboxValue.length : this.listboxValue;
|
|
201
|
+
return !!val;
|
|
203
202
|
},
|
|
204
203
|
isClearable() {
|
|
205
204
|
return this.clearable && this.getListboxValue && !this.disabled;
|