From 84ce308d9d2541c8f8149a835ac7c558ffaaa1a4 Mon Sep 17 00:00:00 2001 From: jialin Date: Wed, 14 Jan 2026 17:20:54 +0800 Subject: [PATCH] fix: hint input width --- src/components/list-input/hint-input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/list-input/hint-input.tsx b/src/components/list-input/hint-input.tsx index ec2862b3..737d4927 100644 --- a/src/components/list-input/hint-input.tsx +++ b/src/components/list-input/hint-input.tsx @@ -91,7 +91,7 @@ const HintInput: React.FC = (props) => { label={label} options={options} trim={trim} - style={{ width: '100%' }} + style={{ flex: 1 }} /> ); };