mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
fix: duckduckgo isn't duckduckgo anymore
This commit is contained in:
parent
2df4e7207b
commit
62506b1955
1 changed files with 5 additions and 1 deletions
|
|
@ -119,7 +119,11 @@
|
|||
>
|
||||
<option disabled selected value="">{$i18n.t('Select a engine')}</option>
|
||||
{#each webSearchEngines as engine}
|
||||
<option value={engine}>{engine}</option>
|
||||
{#if engine === 'duckduckgo' || engine === 'ddgs'}
|
||||
<option value={engine}>DDGS</option>
|
||||
{:else}
|
||||
<option value={engine}>{engine}</option>
|
||||
{/if}
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue