mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
fix: error on warning interval was not shown
This commit is contained in:
parent
407effed39
commit
b2add2539c
@ -18,3 +18,7 @@ Version 1.5.5
|
||||
- Fix error on the "see more" link which was not showed
|
||||
- Layout of the task list
|
||||
|
||||
branch `master`
|
||||
==============
|
||||
|
||||
- fix: validation error on warning date interval is not shown
|
||||
|
@ -72,7 +72,7 @@ class SingleTaskController extends Controller
|
||||
$form = $this->setCreateForm($task, new Role(TaskVoter::CREATE));
|
||||
|
||||
$form->handleRequest($request);
|
||||
|
||||
|
||||
if ($form->isSubmitted()) {
|
||||
if ($form->isValid()) {
|
||||
$em = $this->getDoctrine()->getManager();
|
||||
|
@ -25,6 +25,8 @@
|
||||
<h1 class="chill-red">{{ 'New task'|trans }}</h1>
|
||||
|
||||
{{ form_start(form) }}
|
||||
|
||||
{{ form_errors(form) }}
|
||||
|
||||
{{ form_row(form.title) }}
|
||||
{{ form_row(form.description) }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user