diff --git a/frontend/src/components/DashboardGrid.svelte b/frontend/src/components/DashboardGrid.svelte index c7f670c3..34e0dfd7 100644 --- a/frontend/src/components/DashboardGrid.svelte +++ b/frontend/src/components/DashboardGrid.svelte @@ -189,9 +189,9 @@ -
| handleSelectAll((e.target as HTMLInputElement).checked)} - class="h-4 w-4 text-primary border-gray-300 rounded focus-visible:ring-primary-ring" + class="h-4 w-4 text-primary border-border-strong rounded focus-visible:ring-primary-ring" /> | handleSort("title")} > {$t.dashboard.title} @@ -215,7 +215,7 @@ : ""} | handleSort("last_modified")} > {$t.dashboard.last_modified} @@ -226,7 +226,7 @@ : ""} | handleSort("status")} > {$t.dashboard.status} @@ -237,18 +237,18 @@ : ""} | {$t.dashboard.validation} | {$t.dashboard.git} |
|---|---|---|---|---|---|
| {dashboard.title} | -{new Date(dashboard.last_modified).toLocaleDateString()} | -+ |
{dashboard.status}
@@ -284,7 +284,7 @@
size="sm"
onclick={() => handleValidate(dashboard)}
disabled={validatingIds.has(dashboard.id)}
- class="text-purple-600 hover:text-purple-900"
+ class="text-info hover:text-info"
>
{validatingIds.has(dashboard.id) ? "Validating..." : "Validate"}
@@ -294,7 +294,7 @@
variant="ghost"
size="sm"
onclick={() => openGit(dashboard)}
- class="text-primary hover:text-blue-900"
+ class="text-primary hover:text-primary"
>
{$t.git.manage}
@@ -307,7 +307,7 @@
-
+
{($t.dashboard?.showing )
.replace("{start}", (currentPage * pageSize + 1).toString())
.replace(
diff --git a/frontend/src/components/DynamicForm.svelte b/frontend/src/components/DynamicForm.svelte
index e6d3244a..6b5a0a23 100755
--- a/frontend/src/components/DynamicForm.svelte
+++ b/frontend/src/components/DynamicForm.svelte
@@ -55,7 +55,7 @@
{#if schema && schema.properties}
{#each Object.entries(schema.properties) as [key, prop]}
-
+
{#if prop.type === 'string'}
{/each}
- |