Make subtask title text field wider when editing subtasks

This commit is contained in:
Frédéric Guillot
2018-05-10 11:37:28 -07:00
parent fea684279c
commit 56c2a6e543
3 changed files with 5 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ class SubtaskHelper extends Base
$attributes = array_merge(array('tabindex="1"', 'required'), $attributes);
$html = $this->helper->form->label(t('Title'), 'title');
$html .= $this->helper->form->text('title', $values, $errors, $attributes);
$html .= $this->helper->form->text('title', $values, $errors, $attributes, 'form-max-width');
return $html;
}