We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5a0a1 commit 1ecc569Copy full SHA for 1ecc569
app/ui/lib/Combobox.tsx
@@ -235,7 +235,10 @@ export const Combobox = ({
235
/>
236
{items.length > 0 && (
237
<ComboboxButton
238
- className="my-1.5 flex items-center border-l px-3 bg-default border-secondary"
+ className={cn(
239
+ 'my-1.5 flex items-center border-l px-3 border-secondary',
240
+ disabled ? 'cursor-not-allowed bg-disabled' : 'bg-default'
241
+ )}
242
aria-hidden
243
>
244
<SelectArrows6Icon title="Select" className="w-2 text-secondary" />
0 commit comments