Add a min="0" attribute to task_list form input

This commit is contained in:
rivten
2021-05-11 16:30:06 +02:00
committed by fguillot
parent 1bd82cea49
commit 4fa9de8390
6 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
<?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="191"', 'tabindex="1"')) ?>
<?= $this->form->label(t('Task limit'), 'task_limit') ?>
<?= $this->form->number('task_limit', $values, $errors, array('tabindex="2"')) ?>
<?= $this->form->number('task_limit', $values, $errors, array('tabindex="2"', 'min="0"')) ?>
<?= $this->form->checkbox('hide_in_dashboard', t('Hide tasks in this column in the dashboard'), 1, false, '', array('tabindex' => 3)) ?>