Fix form area widths
This commit is contained in:
parent
851bea0725
commit
842c29e0d0
|
@ -60,6 +60,7 @@ class AcknowledgeForm extends CommandForm
|
|||
array(
|
||||
'label' => t('Comment'),
|
||||
'rows' => 4,
|
||||
'cols' => 72,
|
||||
'required' => true,
|
||||
'helptext' => t(
|
||||
' If you work with other administrators you may find it useful to share information '
|
||||
|
|
|
@ -54,6 +54,7 @@ class CommentForm extends CommandForm
|
|||
array(
|
||||
'label' => t('Comment'),
|
||||
'rows' => 4,
|
||||
'cols' => 72,
|
||||
'required' => true,
|
||||
'helptext' => t(
|
||||
'If you work with other administrators, you may find it useful to share information '
|
||||
|
|
|
@ -58,6 +58,7 @@ class CustomNotificationForm extends CommandForm
|
|||
array(
|
||||
'label' => t('Comment'),
|
||||
'rows' => 4,
|
||||
'cols' => 72,
|
||||
'required' => true,
|
||||
'helptext' => t(
|
||||
'If you work with other administrators, you may find it useful to share information '
|
||||
|
|
|
@ -157,6 +157,7 @@ class ScheduleDowntimeForm extends WithChildrenCommandForm
|
|||
array(
|
||||
'label' => t('Comment'),
|
||||
'rows' => 4,
|
||||
'cols' => 72,
|
||||
'required' => true,
|
||||
'helptext' => t(
|
||||
'If you work with other administrators, you may find it useful to share information '
|
||||
|
|
|
@ -164,6 +164,7 @@ class SubmitPassiveCheckResultForm extends CommandForm
|
|||
array(
|
||||
'label' => t('Check Output'),
|
||||
'rows' => 2,
|
||||
'cols' => 72,
|
||||
'required' => true,
|
||||
'helptext' => t('Fill in the check output string which should be send to Icinga.')
|
||||
)
|
||||
|
@ -175,6 +176,7 @@ class SubmitPassiveCheckResultForm extends CommandForm
|
|||
array(
|
||||
'label' => t('Performance Data'),
|
||||
'rows' => 2,
|
||||
'cols' => 72,
|
||||
'helptext' => t('Fill in the performance data string which should be send to Icinga.')
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue