style: set tag selector placeholder text color to match all other inputs

This commit is contained in:
trafficlunar 2025-04-25 22:38:09 +01:00
parent 3359a1fad1
commit 5258ac7c94

View file

@ -91,7 +91,7 @@ export default function TagSelector({ tags, setTags }: Props) {
onKeyDown: handleKeyDown, onKeyDown: handleKeyDown,
disabled: isMaxItemsSelected, disabled: isMaxItemsSelected,
placeholder: tags.length > 0 ? "" : "Type or select an item...", placeholder: tags.length > 0 ? "" : "Type or select an item...",
className: "w-full flex-1 outline-none", className: "w-full flex-1 outline-none placeholder:text-black/40",
})} })}
/> />
</div> </div>