mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-11 22:52:54 +00:00
refac
This commit is contained in:
parent
1e36a20600
commit
1fa3050f06
1 changed files with 2 additions and 2 deletions
|
|
@ -234,7 +234,7 @@
|
|||
tooltip={$i18n.t(
|
||||
'Set the default models that are automatically selected for all users when a new chat is created.'
|
||||
)}
|
||||
models={$models}
|
||||
models={$models.filter((model) => !(model?.info?.meta?.hidden ?? false))}
|
||||
bind:modelIds={defaultModelIds}
|
||||
/>
|
||||
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
tooltip={$i18n.t(
|
||||
'Set the models that are automatically pinned to the sidebar for all users.'
|
||||
)}
|
||||
models={$models}
|
||||
models={$models.filter((model) => !(model?.info?.meta?.hidden ?? false))}
|
||||
bind:modelIds={defaultPinnedModelIds}
|
||||
/>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue