From bc2fbee5c6cf49123cfba94557fcd965d081ad5b Mon Sep 17 00:00:00 2001 From: Julie Lenaerts Date: Mon, 6 Oct 2025 12:14:00 +0200 Subject: [PATCH] Fix: notification edit template form field addressesEmail removed --- .changes/unreleased/Fixed-20251006-121315.yaml | 6 ++++++ .../Resources/views/Notification/edit.html.twig | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changes/unreleased/Fixed-20251006-121315.yaml diff --git a/.changes/unreleased/Fixed-20251006-121315.yaml b/.changes/unreleased/Fixed-20251006-121315.yaml new file mode 100644 index 000000000..714b55e99 --- /dev/null +++ b/.changes/unreleased/Fixed-20251006-121315.yaml @@ -0,0 +1,6 @@ +kind: Fixed +body: 'Notification: fix editing of sent notification by removing form.addressesEmails, a field that no longer exists' +time: 2025-10-06T12:13:15.45905994+02:00 +custom: + Issue: "434" + SchemaChange: No schema change diff --git a/src/Bundle/ChillMainBundle/Resources/views/Notification/edit.html.twig b/src/Bundle/ChillMainBundle/Resources/views/Notification/edit.html.twig index fd3b3b6bf..b51cc4dab 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/Notification/edit.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/Notification/edit.html.twig @@ -21,8 +21,6 @@ {{ form_row(form.title, { 'label': 'notification.subject'|trans }) }} {{ form_row(form.addressees, { 'label': 'notification.sent_to'|trans }) }} - {{ form_row(form.addressesEmails) }} - {% include handler.template(notification) with handler.templateData(notification) %}