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

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