+
{$i18n.t('Pull Progress')}
+
-
-
-
{$i18n.t('Categories')}
-
-
- {#each Object.keys(categories) as category}
-
- {/each}
-
+
+ {digest}
+
+ {/if}
- {#if pullProgress !== null}
-
-
{$i18n.t('Pull Progress')}
-
-
- {pullProgress ?? 0}%
-
-
-
- {digest}
-
+
+
-
+
diff --git a/src/routes/(app)/workspace/prompts/create/+page.svelte b/src/routes/(app)/workspace/prompts/create/+page.svelte
index 8bec31905..b52e089b6 100644
--- a/src/routes/(app)/workspace/prompts/create/+page.svelte
+++ b/src/routes/(app)/workspace/prompts/create/+page.svelte
@@ -35,7 +35,7 @@
if (prompt) {
await prompts.set(await getPrompts(localStorage.token));
- await goto('/prompts');
+ await goto('/workspace/prompts');
}
} else {
toast.error(
@@ -93,162 +93,153 @@
});
-
-
-
-
{$i18n.t('My Prompts')}
-
-
{
- history.back();
- }}
+
+
{
+ history.back();
+ }}
+ >
+
+
-
+ {$i18n.t('Back')}
+
+
+
diff --git a/src/routes/(app)/workspace/prompts/edit/+page.svelte b/src/routes/(app)/workspace/prompts/edit/+page.svelte
index f3adefd57..6de8e1943 100644
--- a/src/routes/(app)/workspace/prompts/edit/+page.svelte
+++ b/src/routes/(app)/workspace/prompts/edit/+page.svelte
@@ -33,7 +33,7 @@
if (prompt) {
await prompts.set(await getPrompts(localStorage.token));
- await goto('/prompts');
+ await goto('/workspace/prompts');
}
} else {
toast.error(
@@ -67,171 +67,162 @@
command = prompt.command.slice(1);
content = prompt.content;
} else {
- goto('/prompts');
+ goto('/workspace/prompts');
}
} else {
- goto('/prompts');
+ goto('/workspace/prompts');
}
});
-
-
-
-
{$i18n.t('My Prompts')}
-
-
{
- history.back();
- }}
+
+
{
+ history.back();
+ }}
+ >
+
+
-
+ {$i18n.t('Back')}
+
+
+