@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.4.82",
3
+ "version": "0.4.83",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -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.join(', ') : undefined
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)