Skip to content

Commit

Permalink
Next: Fixed a bug with showing loading masks
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Dec 31, 2024
1 parent 532f909 commit 5358089
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<Skeleton class="mt-4 h-[30px] w-full rounded-full" />
<Table.Root class="mt-4">
<Table.Body>
{#each Array.from({ length: 5 }) as index (index)}
{#each { length: 5 }}
<Table.Row class="group">
<Table.Head class="w-40 whitespace-nowrap"><Skeleton class="h-[24px] w-full rounded-full" /></Table.Head>
<Table.Cell class="w-4 pr-0"></Table.Cell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
</Card.Header>
<Card.Content class="space-y-4 pt-2">
<div class="grid grid-cols-2 gap-4 lg:grid-cols-4">
{#each Array.from({ length: 4 }) as index (index)}
{#each { length: 4 }}
<div class="flex flex-col items-center rounded-lg bg-muted p-2">
<Skeleton class="mb-1 size-6" />
<Skeleton class="mb-1 h-[28px] w-[60px]" />
Expand Down

0 comments on commit 5358089

Please sign in to comment.