From b35f63788ddaa6c010d5e294f86c407f7bf482f2 Mon Sep 17 00:00:00 2001 From: manny3 Date: Tue, 13 Sep 2022 20:09:49 +0800 Subject: [PATCH] fix: Tag component close icon display bug (#5956) Co-authored-by: Tony --- components/tag/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/tag/index.tsx b/components/tag/index.tsx index a9cd26863..ef2bbea61 100644 --- a/components/tag/index.tsx +++ b/components/tag/index.tsx @@ -87,9 +87,9 @@ const Tag = defineComponent({ const renderCloseIcon = () => { if (closable) { return closeIcon ? ( -
+ {closeIcon} -
+ ) : ( );