diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-11-27 18:33:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-11-27 18:33:00 -0500 |
commit | de2501f070a7bf41b766ee1139d1322213e387e9 (patch) | |
tree | d6a2c53ce9c70e40d6e412b72e5eeb04e3a0e2c4 /app/Template/swimlane/edit_default.php | |
parent | de1b9416d2c359e57f386760cfa29f2a12bf5b51 (diff) |
Improve tabindex for project settings forms
Diffstat (limited to 'app/Template/swimlane/edit_default.php')
-rw-r--r-- | app/Template/swimlane/edit_default.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/swimlane/edit_default.php b/app/Template/swimlane/edit_default.php index f271c513..8a0c0a15 100644 --- a/app/Template/swimlane/edit_default.php +++ b/app/Template/swimlane/edit_default.php @@ -6,7 +6,7 @@ <?= $this->form->hidden('id', $values) ?> <?= $this->form->label(t('Name'), 'default_swimlane') ?> - <?= $this->form->text('default_swimlane', $values, $errors, array('required', 'maxlength="50"')) ?> + <?= $this->form->text('default_swimlane', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?> <?= $this->form->checkbox('show_default_swimlane', t('Show default swimlane'), 1, $values['show_default_swimlane'] == 1) ?> |