fix: When the label of the form tab is empty, the content is not supported (#3950)
parent
f12ba4eeeb
commit
ce8f907932
|
|
@ -13,7 +13,7 @@
|
||||||
modelValue == item[valueField] ? 'active' : '',
|
modelValue == item[valueField] ? 'active' : '',
|
||||||
]"
|
]"
|
||||||
@click="inputDisabled ? () => {} : selected(item[valueField])"
|
@click="inputDisabled ? () => {} : selected(item[valueField])"
|
||||||
:innerHTML="item[textField]"
|
:innerHTML="item[textField] ? item[textField] : '\u200D'"
|
||||||
>
|
>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue