From 04ff19c867a730dd18454936843300d3c02dadbe Mon Sep 17 00:00:00 2001 From: shaohuzhang1 Date: Wed, 27 Aug 2025 19:05:03 +0800 Subject: [PATCH] fix: When the label of the form tab is empty, the content is not supported --- 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 f01c8562b1a..3e41d55b73e 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'" >