Add ARIA label to form text editor without label

This commit is contained in:
Michael
2020-10-04 18:31:49 +01:00
committed by GitHub
parent c5f18fb136
commit b8e6157738
8 changed files with 11 additions and 6 deletions

View File

@@ -3,6 +3,6 @@
</div>
<form method="post" action="<?= $this->url->href('CommentListController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
<?= $this->form->textEditor('comment', array('project_id' => $task['project_id']), array(), array('required' => true)) ?>
<?= $this->form->textEditor('comment', array('project_id' => $task['project_id']), array(), array('required' => true, 'aria-label' => t('New comment'))) ?>
<?= $this->modal->submitButtons() ?>
</form>