Skip to content

Commit ce8f907

Browse files
authored
fix: When the label of the form tab is empty, the content is not supported (#3950)
1 parent f12ba4e commit ce8f907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/dynamics-form/items/radio/RadioCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
modelValue == item[valueField] ? 'active' : '',
1414
]"
1515
@click="inputDisabled ? () => {} : selected(item[valueField])"
16-
:innerHTML="item[textField]"
16+
:innerHTML="item[textField] ? item[textField] : '\u200D'"
1717
>
1818
</el-card>
1919
</el-col>

0 commit comments

Comments
 (0)