File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/Exceptionless.Web/ClientApp/src/lib/features Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 2
2
import type { IFilter } from ' $comp/filters/filters.svelte' ;
3
3
import type { ViewProject } from ' $features/projects/models' ;
4
4
5
- import ErrorMessage from ' $comp/ErrorMessage.svelte' ;
6
5
import ClickableProjectFilter from ' $comp/filters/ClickableProjectFilter.svelte' ;
7
6
import DateTime from ' $comp/formatters/DateTime.svelte' ;
8
7
import TimeAgo from ' $comp/formatters/TimeAgo.svelte' ;
9
- import { P } from ' $comp/typography' ;
10
8
import { Skeleton } from ' $comp/ui/skeleton' ;
11
9
import * as Table from ' $comp/ui/table' ;
12
10
import * as Tabs from ' $comp/ui/tabs' ;
182
180
<Skeleton class =" mt-4 h-[30px] w-full rounded-full" />
183
181
<Table .Root class =" mt-4" >
184
182
<Table .Body >
185
- {#each Array .from ({ length: 5 })}
183
+ {#each Array .from ({ length: 5 }) as index ( index ) }
186
184
<Table .Row class =" group" >
187
185
<Table .Head class =" w-40 whitespace-nowrap" ><Skeleton class =" h-[24px] w-full rounded-full" /></Table .Head >
188
186
<Table .Cell class =" w-4 pr-0" ></Table .Cell >
Original file line number Diff line number Diff line change 184
184
</Card .Header >
185
185
<Card .Content class =" space-y-4 pt-2" >
186
186
<div class =" grid grid-cols-2 gap-4 lg:grid-cols-4" >
187
- {#each Array ( 4 )}
187
+ {#each Array . from ({ length: 4 }) as index ( index )}
188
188
<div class =" flex flex-col items-center rounded-lg bg-muted p-2" >
189
189
<Skeleton class =" mb-1 size-6" />
190
190
<Skeleton class =" mb-1 h-[28px] w-[60px]" />
You can’t perform that action at this time.
0 commit comments