Use searchable_select instead of normal select.
This commit is contained in:
parent
ba17911941
commit
93e3d38b1a
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Index extends App.Controller
|
|||
for locale in locales
|
||||
options[locale.locale] = locale.name
|
||||
configure_attributes = [
|
||||
{ name: 'locale', display: '', tag: 'select', null: false, class: 'input', options: options, default: App.i18n.get() },
|
||||
{ name: 'locale', display: '', tag: 'searchable_select', null: false, class: 'input', options: options, default: App.i18n.get() },
|
||||
]
|
||||
|
||||
@form = new App.ControllerForm(
|
||||
|
|
Loading…
Reference in a new issue