|
@@ -4,7 +4,7 @@
|
|
|
const { saveAs } = fileSaver;
|
|
|
|
|
|
import { onMount } from 'svelte';
|
|
|
- import { prompts } from '$lib/stores';
|
|
|
+ import { WEBUI_NAME, prompts } from '$lib/stores';
|
|
|
import { createNewPrompt, deletePromptByCommand, getPrompts } from '$lib/apis/prompts';
|
|
|
import { error } from '@sveltejs/kit';
|
|
|
import { goto } from '$app/navigation';
|
|
@@ -36,6 +36,12 @@
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
+<svelte:head>
|
|
|
+ <title>
|
|
|
+ {`Prompts | ${$WEBUI_NAME}`}
|
|
|
+ </title>
|
|
|
+</svelte:head>
|
|
|
+
|
|
|
<div class="min-h-screen max-h-[100dvh] w-full flex justify-center dark:text-white">
|
|
|
<div class="flex flex-col justify-between w-full overflow-y-auto">
|
|
|
<div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10">
|