mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-18 10:32:54 -05:00
AddNodeForm: waste less space for multiselects
This commit is contained in:
parent
e1ec6c7b6a
commit
7b0b550f4f
1 changed files with 3 additions and 3 deletions
|
|
@ -165,7 +165,7 @@ class AddNodeForm extends QuickForm
|
|||
$this->addElement('multiselect', 'children', array(
|
||||
'label' => $this->translate('Hosts'),
|
||||
'required' => true,
|
||||
'size' => 14,
|
||||
'size' => 8,
|
||||
'style' => 'width: 25em',
|
||||
'multiOptions' => $this->enumHostList(),
|
||||
'description' => $this->translate(
|
||||
|
|
@ -200,7 +200,7 @@ class AddNodeForm extends QuickForm
|
|||
$this->addElement('multiselect', 'children', array(
|
||||
'label' => $this->translate('Services'),
|
||||
'required' => true,
|
||||
'size' => 14,
|
||||
'size' => 8,
|
||||
'style' => 'width: 25em',
|
||||
'multiOptions' => $this->enumServiceList($host),
|
||||
'description' => $this->translate(
|
||||
|
|
@ -214,7 +214,7 @@ class AddNodeForm extends QuickForm
|
|||
$this->addElement('multiselect', 'children', array(
|
||||
'label' => $this->translate('Process nodes'),
|
||||
'required' => true,
|
||||
'size' => 14,
|
||||
'size' => 8,
|
||||
'style' => 'width: 25em',
|
||||
'multiOptions' => $this->enumProcesses(),
|
||||
'description' => $this->translate(
|
||||
|
|
|
|||
Loading…
Reference in a new issue