Skip to content

Commit 459f8a7

Browse files
committed
Merge branch 'main' of github.com:jumpserver/kael
2 parents fd15cea + 4d9d578 commit 459f8a7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/lib/components/chat/Suggestions.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</script>
6666

6767
<div
68-
class="mb-1 flex gap-1 text-xs font-medium items-center text-gray-600 dark:text-gray-400 hidden"
68+
class="mb-1 flex gap-1 text-xs font-medium items-center text-gray-600 dark:text-gray-400"
6969
>
7070
{#if filteredPrompts.length > 0}
7171
<Bolt />
@@ -83,7 +83,7 @@
8383
{/if}
8484
</div>
8585

86-
<div class="h-40 w-full hidden">
86+
<div class="h-40 w-full">
8787
{#if filteredPrompts.length > 0}
8888
<div role="list" class="max-h-40 overflow-auto scrollbar-none items-start {className}">
8989
{#each filteredPrompts as prompt, idx (prompt.id || `${prompt.content}-${idx}`)}

src/routes/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@
650650
}
651651
} else {
652652
// Redirect to /error when Backend Not Detected
653-
await goto(`/kael/error`);
653+
await goto(`/core/auth/login/?next=/kael`);
654654
}
655655
656656
await tick();

0 commit comments

Comments
 (0)