From ce8f9079320361705730f2a36a28c7f310cd4faf Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Wed, 27 Aug 2025 19:06:15 +0800 Subject: [PATCH] fix: When the label of the form tab is empty, the content is not supported (#3950) --- ui/src/components/dynamics-form/items/radio/RadioCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/dynamics-form/items/radio/RadioCard.vue b/ui/src/components/dynamics-form/items/radio/RadioCard.vue index f01c8562b..3e41d55b7 100644 --- a/ui/src/components/dynamics-form/items/radio/RadioCard.vue +++ b/ui/src/components/dynamics-form/items/radio/RadioCard.vue @@ -13,7 +13,7 @@ modelValue == item[valueField] ? 'active' : '', ]" @click="inputDisabled ? () => {} : selected(item[valueField])" - :innerHTML="item[textField]" + :innerHTML="item[textField] ? item[textField] : '\u200D'" >