Increase input fields size in the navigation item forms

Fixes #2872
This commit is contained in:
Eric Lippmann 2017-07-31 09:06:17 +02:00
parent ab7fa9f925
commit 7d177d8712
2 changed files with 3 additions and 3 deletions

View File

@ -599,7 +599,7 @@ class NavigationConfigForm extends ConfigForm
if ($checked || (isset($formData['shared']) && $formData['shared'])) {
$shared = true;
$this->addElement(
'text',
'textarea',
'users',
array(
'label' => $this->translate('Users'),
@ -609,7 +609,7 @@ class NavigationConfigForm extends ConfigForm
)
);
$this->addElement(
'text',
'textarea',
'groups',
array(
'label' => $this->translate('Groups'),

View File

@ -47,7 +47,7 @@ class NavigationItemForm extends Form
);
$this->addElement(
'text',
'textarea',
'url',
array(
'allowEmpty' => true,