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

@@ -12,7 +12,7 @@
<?= $this->form->textEditor('description', $values, $errors, array('tabindex' => 2)) ?>
<?= $this->form->label(t('Task limit'), 'task_limit') ?>
<?= $this->form->number('task_limit', $values, $errors, array('tabindex' => 3)) ?>
<?= $this->form->number('task_limit', $values, $errors, array('tabindex' => 3, 'min="0"')) ?>
<?= $this->modal->submitButtons() ?>
</form>