diff options
Diffstat (limited to 'app/Template/subtask/show.php')
-rw-r--r-- | app/Template/subtask/show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/subtask/show.php b/app/Template/subtask/show.php index b0326c48..999016c3 100644 --- a/app/Template/subtask/show.php +++ b/app/Template/subtask/show.php @@ -13,7 +13,7 @@ <?= $this->form->text('title', array(), array(), array('required', 'placeholder="'.t('Type here to create a new sub-task').'"')) ?> <?= $this->form->numeric('time_estimated', array(), array(), array('placeholder="'.t('Original estimate').'"')) ?> <?= $this->form->select('user_id', $users_list, array(), array(), array('placeholder="'.t('Assignee').'"')) ?> - <input type="submit" value="<?= t('Add') ?>" class="btn btn-blue"/> + <button type="submit" class="btn btn-blue"><?= t('Add') ?></button> </form> <?php endif ?> |