mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-08 06:04:10 +00:00
fix(inbounds): avoid undefined filterEmailOption in client form
This commit is contained in:
parent
67d24ca0e6
commit
4a1dac89b6
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@
|
||||||
mode="combobox"
|
mode="combobox"
|
||||||
show-search
|
show-search
|
||||||
allow-clear
|
allow-clear
|
||||||
:filter-option="filterEmailOption"
|
:filter-option="(input, option) => String(option.componentOptions?.propsData?.value || '').toLowerCase().includes(String(input || '').toLowerCase())"
|
||||||
:dropdown-class-name="themeSwitcher.currentTheme"
|
:dropdown-class-name="themeSwitcher.currentTheme"
|
||||||
:not-found-content="emailOptions.length === 0 ? null : undefined"
|
:not-found-content="emailOptions.length === 0 ? null : undefined"
|
||||||
:placeholder='{{ printf "%q" (i18n "pages.inbounds.emailSelectPlaceholder") }}'>
|
:placeholder='{{ printf "%q" (i18n "pages.inbounds.emailSelectPlaceholder") }}'>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue