mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
refac
This commit is contained in:
parent
0a351580f8
commit
4ca936f0bf
1 changed files with 12 additions and 2 deletions
|
|
@ -793,7 +793,12 @@
|
|||
updateFileContentHandler();
|
||||
}}
|
||||
>
|
||||
{isSaving ? $i18n.t('Running...') : $i18n.t('Save')}
|
||||
{$i18n.t('Save')}
|
||||
{#if isSaving}
|
||||
<div class="ml-2 self-center">
|
||||
<Spinner />
|
||||
</div>
|
||||
{/if}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -851,7 +856,12 @@
|
|||
updateFileContentHandler();
|
||||
}}
|
||||
>
|
||||
{isSaving ? $i18n.t('Running...') : $i18n.t('Save')}
|
||||
{$i18n.t('Save')}
|
||||
{#if isSaving}
|
||||
<div class="ml-2 self-center">
|
||||
<Spinner />
|
||||
</div>
|
||||
{/if}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue