From 3907e1ac7621615cfd7712bca0256bc068a54481 Mon Sep 17 00:00:00 2001 From: jialin Date: Tue, 24 Mar 2026 15:49:26 +0800 Subject: [PATCH] fix(style): hint-input minwidth --- src/components/label-selector/wrapper.tsx | 3 --- src/components/list-input/hint-input.tsx | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/label-selector/wrapper.tsx b/src/components/label-selector/wrapper.tsx index 8066d58b..b5688647 100644 --- a/src/components/label-selector/wrapper.tsx +++ b/src/components/label-selector/wrapper.tsx @@ -18,9 +18,6 @@ interface WrapperProps { wrapper?: React.CSSProperties; }; button?: React.ReactNode; - styles?: { - wrapper?: React.CSSProperties; - }; } const Container = styled.div` diff --git a/src/components/list-input/hint-input.tsx b/src/components/list-input/hint-input.tsx index 5884ad27..43995f6f 100644 --- a/src/components/list-input/hint-input.tsx +++ b/src/components/list-input/hint-input.tsx @@ -100,7 +100,7 @@ const HintInput: React.FC = (props) => { label={label} options={options} trim={trim} - style={{ flex: 1 }} + style={{ flex: 1, minWidth: 0 }} onPaste={onPaste} /> );