Add missing return to renderTitleField

This commit is contained in:
Michael Vickers 2020-10-02 21:11:27 +01:00 committed by Frédéric Guillot
parent c3aec26877
commit de56529291
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ class TaskHelper extends Base
'placeholder="'.t('Title').'"'
)
);
return $html;
}
public function renderDescriptionField(array $values, array $errors)