mirror of
https://github.com/open-webui/open-webui
synced 2025-04-06 13:45:41 +00:00
fix
This commit is contained in:
parent
c07da8d1f3
commit
3c7f45ced4
@ -230,7 +230,10 @@
|
|||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<SensitiveInput placeholder={$i18n.t('API Key')} value={OPENAI_API_KEYS[idx]} />
|
<SensitiveInput
|
||||||
|
placeholder={$i18n.t('API Key')}
|
||||||
|
bind:value={OPENAI_API_KEYS[idx]}
|
||||||
|
/>
|
||||||
<div class="self-center flex items-center">
|
<div class="self-center flex items-center">
|
||||||
{#if idx === 0}
|
{#if idx === 0}
|
||||||
<button
|
<button
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
export let value: string;
|
export let value: string = '';
|
||||||
export let placeholder = '';
|
export let placeholder = '';
|
||||||
export let readOnly = false;
|
export let readOnly = false;
|
||||||
export let outerClassName = 'flex flex-1';
|
export let outerClassName = 'flex flex-1';
|
||||||
|
Loading…
Reference in New Issue
Block a user