Skip to content

Commit a79a6a5

Browse files
committed
chore: format
1 parent 0c46102 commit a79a6a5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+914
-68
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.5.12",
3+
"version": "0.5.13",
44
"private": true,
55
"scripts": {
66
"dev": "npm run pyodide:fetch && vite dev --host",

postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default {
22
plugins: {
3-
'@tailwindcss/postcss': {},
3+
'@tailwindcss/postcss': {}
44
}
55
};

src/lib/components/admin/Evaluations/Feedbacks.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@
131131
</div>
132132
</div>
133133

134-
<div class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5">
134+
<div
135+
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5"
136+
>
135137
{#if (feedbacks ?? []).length === 0}
136138
<div class="text-center text-xs text-gray-500 dark:text-gray-400 py-1">
137139
{$i18n.t('No feedbacks found')}

src/lib/components/admin/Evaluations/Leaderboard.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,9 @@
300300
</div>
301301
</div>
302302

303-
<div class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5">
303+
<div
304+
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5"
305+
>
304306
{#if loadingLeaderboard}
305307
<div class=" absolute top-0 bottom-0 left-0 right-0 flex">
306308
<div class="m-auto">

src/lib/components/admin/Users/UserList.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@
171171
</div>
172172
</div>
173173

174-
<div class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5">
174+
<div
175+
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm pt-0.5"
176+
>
175177
<table
176178
class="w-full text-sm text-left text-gray-500 dark:text-gray-400 table-auto max-w-full rounded-sm"
177179
>

src/lib/components/chat/Messages/Skeleton.svelte

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,32 @@
55
<div class="w-full mt-2 mb-2">
66
<div class="animate-pulse flex w-full">
77
<div class="{size === 'md' ? 'space-y-2' : 'space-y-1.5'} w-full">
8-
<div class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm mr-14" />
8+
<div
9+
class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm mr-14"
10+
/>
911

1012
<div class="grid grid-cols-3 gap-4">
1113
<div
12-
class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-2"
14+
class="{size === 'md'
15+
? 'h-2'
16+
: 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-2"
1317
/>
1418
<div
15-
class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-1"
19+
class="{size === 'md'
20+
? 'h-2'
21+
: 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-1"
1622
/>
1723
</div>
1824
<div class="grid grid-cols-4 gap-4">
1925
<div
20-
class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-1"
26+
class="{size === 'md'
27+
? 'h-2'
28+
: 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-1"
2129
/>
2230
<div
23-
class="{size === 'md' ? 'h-2' : 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-2"
31+
class="{size === 'md'
32+
? 'h-2'
33+
: 'h-1.5'} bg-gray-200 dark:bg-gray-600 rounded-sm col-span-2"
2434
/>
2535
<div
2636
class="{size === 'md'

src/lib/components/chat/Settings/Advanced/AdvancedParams.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,6 @@
742742
{/if}
743743
</div>
744744

745-
746745
<div class=" py-0.5 w-full justify-between">
747746
<Tooltip
748747
content={$i18n.t(

src/lib/components/chat/Settings/General.svelte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,10 @@
350350
params.reasoning_effort !== null ? params.reasoning_effort : undefined,
351351
frequency_penalty:
352352
params.frequency_penalty !== null ? params.frequency_penalty : undefined,
353-
presence_penalty: params.frequency_penalty !== null ? params.frequency_penalty : undefined,
354-
repeat_penalty: params.frequency_penalty !== null ? params.frequency_penalty : undefined,
353+
presence_penalty:
354+
params.frequency_penalty !== null ? params.frequency_penalty : undefined,
355+
repeat_penalty:
356+
params.frequency_penalty !== null ? params.frequency_penalty : undefined,
355357
repeat_last_n: params.repeat_last_n !== null ? params.repeat_last_n : undefined,
356358
mirostat: params.mirostat !== null ? params.mirostat : undefined,
357359
mirostat_eta: params.mirostat_eta !== null ? params.mirostat_eta : undefined,

src/lib/components/layout/Sidebar/ChatItem.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
draggable="false"
275275
>
276276
<div class=" flex self-center flex-1 w-full">
277-
<div dir=auto class="text-left self-center overflow-hidden w-full h-[20px]">
277+
<div dir="auto" class="text-left self-center overflow-hidden w-full h-[20px]">
278278
{title}
279279
</div>
280280
</div>

0 commit comments

Comments
 (0)