@mythpe/quasar-ui-qui 0.4.82 → 0.4.83
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/package.json
CHANGED
|
@@ -193,7 +193,7 @@ const customViewModeValue = computed(() => {
|
|
|
193
193
|
const k = props.optionLabel === undefined ? 'label' : (typeof props.optionLabel === 'function' ? props.optionLabel(opt) : props.optionLabel)
|
|
194
194
|
return opt[k]
|
|
195
195
|
})
|
|
196
|
-
return opts?.length ? opts
|
|
196
|
+
return opts?.length ? opts?.join(', ') : '-'
|
|
197
197
|
}
|
|
198
198
|
const opt = options.value?.find((e) => {
|
|
199
199
|
const k = props.optionValue === undefined ? 'value' : (typeof props.optionValue === 'function' ? props.optionValue(e) : props.optionValue)
|