"...git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "609a42c29c50d5190a71a879149cc33de6df0ae9"
Commit 3c7f45ce authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent c07da8d1
...@@ -230,7 +230,10 @@ ...@@ -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
......
<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';
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment