mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
refac
This commit is contained in:
parent
67dcef5e9a
commit
601f1af0a5
2 changed files with 4 additions and 4 deletions
|
|
@ -807,7 +807,7 @@
|
|||
<div>
|
||||
<div class=" py-0.5 flex w-full justify-between">
|
||||
<label id="floating-action-buttons-label" class=" self-center text-xs">
|
||||
{$i18n.t('Floating Action Buttons')}
|
||||
{$i18n.t('Floating Quick Actions')}
|
||||
</label>
|
||||
|
||||
<div class="flex items-center gap-3 p-1">
|
||||
|
|
@ -815,7 +815,7 @@
|
|||
<button
|
||||
class="text-xs text-gray-700 dark:text-gray-400 underline"
|
||||
type="button"
|
||||
aria-label={$i18n.t('Open Modal To Manage Floating Action Buttons')}
|
||||
aria-label={$i18n.t('Open Modal To Manage Floating Quick Actions')}
|
||||
on:click={() => {
|
||||
showManageFloatingActionButtonsModal = true;
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<div>
|
||||
<div class=" flex justify-between dark:text-gray-100 px-5 pt-4 pb-1.5">
|
||||
<h1 class="text-lg font-medium self-center font-primary">
|
||||
{$i18n.t('Action Buttons')}
|
||||
{$i18n.t('Quick Actions')}
|
||||
</h1>
|
||||
<button
|
||||
class="self-center"
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
{$i18n.t('Default action buttons will be used.')}
|
||||
</div>
|
||||
{:else}
|
||||
{#each floatingActionButtons as button (button.id)}
|
||||
{#each floatingActionButtons as button, buttonIdx}
|
||||
<div class=" py-1 flex w-full justify-between items-start">
|
||||
<div class="flex flex-col items-start pr-2">
|
||||
<input
|
||||
|
|
|
|||
Loading…
Reference in a new issue