Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Scooter1337 committed Mar 21, 2024
1 parent 3bd267f commit 9a9d484
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<Button
variant="ghost"
builders={[builder]}
class="data-[state=open]:bg-accent -ml-3 h-8"
class="-ml-3 h-8 data-[state=open]:bg-accent"
size="sm"
>
<slot />
Expand All @@ -72,16 +72,16 @@
</DropdownMenu.Trigger>
<DropdownMenu.Content align="start">
<DropdownMenu.Item on:click={handleAscSort}>
<ArrowUp class="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
<ArrowUp class="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
Asc
</DropdownMenu.Item>
<DropdownMenu.Item on:click={handleDescSort}>
<ArrowDown class="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
<ArrowDown class="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
Desc
</DropdownMenu.Item>
<DropdownMenu.Separator />
<DropdownMenu.Item on:click={handleHide}>
<EyeNone class="text-muted-foreground/70 mr-2 h-3.5 w-3.5" />
<EyeNone class="mr-2 h-3.5 w-3.5 text-muted-foreground/70" />
Hide
</DropdownMenu.Item>
</DropdownMenu.Content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</script>

<div class="flex items-center justify-between px-2">
<div class="text-muted-foreground flex-1 text-sm">
<div class="flex-1 text-sm text-muted-foreground">
{Object.keys($selectedDataIds).length} of{" "}
{$rows.length} row(s) selected.
</div>
Expand Down

0 comments on commit 9a9d484

Please sign in to comment.