diff --git a/frontend/src/lib/components/dashboard/RepositoryDashboardGrid.svelte b/frontend/src/lib/components/dashboard/RepositoryDashboardGrid.svelte index 5253b09b..8a58ff5a 100644 --- a/frontend/src/lib/components/dashboard/RepositoryDashboardGrid.svelte +++ b/frontend/src/lib/components/dashboard/RepositoryDashboardGrid.svelte @@ -2,18 +2,20 @@ - + + - -
| - - handleSelectAll((e.target as HTMLInputElement).checked)} - class="h-4 w-4 text-primary border-border-strong rounded focus-visible:ring-primary-ring" - /> - | -handleSort("title")} - > - {$t.dashboard.title} - {sortColumn === "title" - ? sortDirection === "asc" - ? "↑" - : "↓" - : ""} - | -handleSort("last_modified")} - > - {$t.dashboard.last_modified} - {sortColumn === "last_modified" - ? sortDirection === "asc" - ? "↑" - : "↓" - : ""} - | -handleSort("status")} - > - {$t.dashboard.status} - {sortColumn === "status" - ? sortDirection === "asc" - ? "↑" - : "↓" - : ""} - | -
|---|---|---|---|
| - - handleSelectionChange( - dashboard.id, - (e.target as HTMLInputElement).checked, - )} - class="h-4 w-4 text-primary border-border-strong rounded focus-visible:ring-primary-ring" - /> - | -- - | -{new Date(dashboard.last_modified).toLocaleDateString()} | -- - {getStatusLabel(dashboard)} - - | -