MultiSelect ShowAll unfocused by default

This commit is contained in:
spacebares 2022-12-17 11:41:47 -08:00
parent 58d8695726
commit 86c6728fec

View File

@ -29,7 +29,7 @@ export default function MultiSelect({ className, title, options, selection, onTo
<Menu relativeTo={popupRef} onDismiss={() => setState({ showMenu: false })}>
<div className="flex flex-wrap justify-between items-center">
<Heading className="p-4 justify-center" size="md">{title}</Heading>
<Button className="mx-4" onClick={() => onShowAll() }>
<Button tabindex="false" className="mx-4" onClick={() => onShowAll() }>
Show All
</Button>
</div>