Skip to content

Commit

Permalink
chore: add changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
PJColombo committed Aug 29, 2024
1 parent 2031a51 commit 08c976a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/shaggy-adults-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@blobscan/web": patch
---

Added support for clearing dropdown
2 changes: 1 addition & 1 deletion apps/web/src/components/Dropdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const Dropdown: React.FC<DropdownProps> = function ({
{clearable && selected ? (
<>
<XMarkIcon
className="h-4.5 w-4 text-contentTertiary-light opacity-60 hover:text-iconHighlight-light hover:opacity-100 dark:text-contentTertiary-dark dark:hover:text-iconHighlight-dark"
className="h-4 w-4 text-contentTertiary-light opacity-60 hover:text-iconHighlight-light hover:opacity-100 dark:text-contentTertiary-dark dark:hover:text-iconHighlight-dark"
onClick={(e) => {
e.stopPropagation();
onChange(null);
Expand Down

0 comments on commit 08c976a

Please sign in to comment.