From 1f1791feb71f5884e8a1e34adc89740ecf0c7ad7 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Tue, 19 May 2026 22:48:15 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=92=84=20make=20tag=20input=20wrap=20?= =?UTF-8?q?around=20instead=20of=20scrolling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/multi-select/multi-select-tag-input.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/multi-select/multi-select-tag-input.tsx b/src/components/multi-select/multi-select-tag-input.tsx index 5634f7481..372c9a767 100644 --- a/src/components/multi-select/multi-select-tag-input.tsx +++ b/src/components/multi-select/multi-select-tag-input.tsx @@ -41,7 +41,7 @@ export function MultiSelectTagInput({ variant: "outline" }), "justify-between w-full inline-flex", - "text-muted-foreground pl-1.5 cursor-text", + "text-muted-foreground pl-1.5 cursor-text h-auto py-1", "hover:bg-transparent hover:text-muted-foreground", props.disabled && "pointer-events-none opacity-50" )} @@ -49,7 +49,7 @@ export function MultiSelectTagInput({ {props.value.map((option) => ( From 6cacc9b83f55951b64521c8940f29dc15a97b382 Mon Sep 17 00:00:00 2001 From: Fred KISSIE Date: Tue, 19 May 2026 22:52:44 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=92=84=20limit=20tag=20width?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/multi-select/multi-select-tag-input.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/multi-select/multi-select-tag-input.tsx b/src/components/multi-select/multi-select-tag-input.tsx index 372c9a767..9791ccb94 100644 --- a/src/components/multi-select/multi-select-tag-input.tsx +++ b/src/components/multi-select/multi-select-tag-input.tsx @@ -61,7 +61,9 @@ export function MultiSelectTagInput({ )} onClick={(e) => e.stopPropagation()} > - {option.text} + + {option.text} +