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>
|
<option disabled selected value="">{$i18n.t('Select a engine')}</option>
|
||||||
{#each webSearchEngines as engine}
|
{#each webSearchEngines as engine}
|
||||||
|
{#if engine === 'duckduckgo' || engine === 'ddgs'}
|
||||||
|
<option value={engine}>DDGS</option>
|
||||||
|
{:else}
|
||||||
<option value={engine}>{engine}</option>
|
<option value={engine}>{engine}</option>
|
||||||
|
{/if}
|
||||||
{/each}
|
{/each}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue