style: set tag selector placeholder text color to match all other inputs
This commit is contained in:
parent
3359a1fad1
commit
5258ac7c94
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue