From b502dc7399950e9c3df19f65aa294844857fcdb2 Mon Sep 17 00:00:00 2001 From: balibabu Date: Thu, 5 Dec 2024 14:29:49 +0800 Subject: [PATCH] Feat: Adjust the input box width of EditTag to 100% #3873 (#3876) ### What problem does this PR solve? Feat: Adjust the input box width of EditTag to 100% #3873 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/src/components/edit-tag/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/components/edit-tag/index.tsx b/web/src/components/edit-tag/index.tsx index 7198078a4..28265da6e 100644 --- a/web/src/components/edit-tag/index.tsx +++ b/web/src/components/edit-tag/index.tsx @@ -97,7 +97,6 @@ const EditTag = ({ tags, setTags }: EditTagsProps) => { ref={inputRef} type="text" size="small" - style={{ width: 78 }} value={inputValue} onChange={handleInputChange} onBlur={handleInputConfirm}