NavigationConfigForm: Do not use a sequenced array to initialize the select
refs #5600
This commit is contained in:
parent
d0eb61dc2e
commit
b96c89339b
|
@ -303,7 +303,7 @@ class NavigationConfigForm extends ConfigForm
|
|||
'autosubmit' => true,
|
||||
'label' => $this->translate('Type'),
|
||||
'description' => $this->translate('The type of this navigation item'),
|
||||
'multiOptions' => $itemTypes
|
||||
'multiOptions' => array_combine($itemTypes, $itemTypes)
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue