diff options
author | Frédéric Guillot <fred@kanboard.net> | 2018-04-11 12:03:38 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2018-04-11 13:48:13 -0700 |
commit | dd92564d221f35fc4fc7bb449c6d24cc4743247b (patch) | |
tree | fb1e46d904f0fbf1f33f1449ca24354003f5e809 /app/Template/column | |
parent | 8c5b9925c49bc1a989cdc5e146ce79543fdf7f0a (diff) |
Increase text fields length in several tables
Diffstat (limited to 'app/Template/column')
-rw-r--r-- | app/Template/column/create.php | 2 | ||||
-rw-r--r-- | app/Template/column/edit.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/column/create.php b/app/Template/column/create.php index 2b0c4641..2ea88eea 100644 --- a/app/Template/column/create.php +++ b/app/Template/column/create.php @@ -5,7 +5,7 @@ <?= $this->form->csrf() ?> <?= $this->form->label(t('Title'), 'title') ?> - <?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="50"', 'tabindex="1"')) ?> + <?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="255"', 'tabindex="1"')) ?> <?= $this->form->label(t('Task limit'), 'task_limit') ?> <?= $this->form->number('task_limit', $values, $errors, array('tabindex="2"')) ?> diff --git a/app/Template/column/edit.php b/app/Template/column/edit.php index 25cf60c9..2025405f 100644 --- a/app/Template/column/edit.php +++ b/app/Template/column/edit.php @@ -6,7 +6,7 @@ <?= $this->form->csrf() ?> <?= $this->form->label(t('Title'), 'title') ?> - <?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?> + <?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="255"')) ?> <?= $this->form->label(t('Task limit'), 'task_limit') ?> <?= $this->form->number('task_limit', $values, $errors) ?> |