Commit 9021f068 authored by Jun Siang Cheah's avatar Jun Siang Cheah
Browse files

Merge remote-tracking branch 'origin/dev' into feat/backend-web-search

parents 81a3c970 de0f3168
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -9,6 +9,8 @@ export const user: Writable<SessionUser | undefined> = writable(undefined); ...@@ -9,6 +9,8 @@ export const user: Writable<SessionUser | undefined> = writable(undefined);
// Frontend // Frontend
export const MODEL_DOWNLOAD_POOL = writable({}); export const MODEL_DOWNLOAD_POOL = writable({});
export const mobile = writable(false);
export const theme = writable('system'); export const theme = writable('system');
export const chatId = writable(''); export const chatId = writable('');
...@@ -37,6 +39,7 @@ export const settings: Writable<Settings> = writable({}); ...@@ -37,6 +39,7 @@ export const settings: Writable<Settings> = writable({});
export const showSidebar = writable(false); export const showSidebar = writable(false);
export const showSettings = writable(false); export const showSettings = writable(false);
export const showArchivedChats = writable(false);
export const showChangelog = writable(false); export const showChangelog = writable(false);
export type Model = OpenAIModel | OllamaModel; export type Model = OpenAIModel | OllamaModel;
......
This diff is collapsed.
This diff is collapsed.
...@@ -956,7 +956,7 @@ ...@@ -956,7 +956,7 @@
<div <div
class="min-h-screen max-h-screen {$showSidebar class="min-h-screen max-h-screen {$showSidebar
? 'lg:max-w-[calc(100%-260px)]' ? 'md:max-w-[calc(100%-260px)]'
: ''} w-full max-w-full flex flex-col" : ''} w-full max-w-full flex flex-col"
> >
<Navbar <Navbar
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment