waibu-mpa 2.15.0 → 2.15.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/lib/class/component.js +1 -1
- package/package.json +1 -1
- package/wiki/CHANGES.md +4 -0
package/lib/class/component.js
CHANGED
|
@@ -243,7 +243,7 @@ async function componentFactory () {
|
|
|
243
243
|
return { value: item, text: (item + '') }
|
|
244
244
|
})
|
|
245
245
|
}
|
|
246
|
-
if (!isEmpty(prop)
|
|
246
|
+
if (!isEmpty(prop)) options.unshift({ value: '', text: '_blank_' })
|
|
247
247
|
for (const opt of options) {
|
|
248
248
|
const sel = find(values, v => opt.value === v)
|
|
249
249
|
const ttext = camelCase(`${prop.name} ${opt.text}`)
|
package/package.json
CHANGED