mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 05:45:19 +00:00
fix(images): correct config key for image edit engine (#19200)
Updates conditional to reference the appropriate configuration property for image editing, ensuring proper engine selection.
This commit is contained in:
parent
a79a39bb64
commit
21c0dd93e2
1 changed files with 1 additions and 1 deletions
|
|
@ -1179,7 +1179,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
{:else if config?.IMAGE_GENERATION_ENGINE === 'gemini'}
|
{:else if config?.IMAGE_EDIT_ENGINE === 'gemini'}
|
||||||
<div class="mb-2.5">
|
<div class="mb-2.5">
|
||||||
<div class="flex w-full justify-between items-center">
|
<div class="flex w-full justify-between items-center">
|
||||||
<div class="text-xs pr-2 shrink-0">
|
<div class="text-xs pr-2 shrink-0">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue