fix: hint input width

This commit is contained in:
jialin
2026-01-14 18:02:08 +08:00
parent be631d021e
commit 84ce308d9d
+1 -1
View File
@@ -91,7 +91,7 @@ const HintInput: React.FC<HintInputProps> = (props) => {
label={label}
options={options}
trim={trim}
style={{ width: '100%' }}
style={{ flex: 1 }}
/>
);
};