diff --git a/CHANGELOG.md b/CHANGELOG.md index 42cbedb9a..2ea33a5bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog Fab-manager - Italian language support (credits to https://crowdin.com/profile/olazzari) +- Fix a bug: broken admin notifications if an order has been paid ## v6.0.1 2023 April 03 diff --git a/app/views/api/notifications/_notify_admin_order_is_paid.json.jbuilder b/app/views/api/notifications/_notify_admin_order_is_paid.json.jbuilder index ace4fc5b6..d036da44e 100644 --- a/app/views/api/notifications/_notify_admin_order_is_paid.json.jbuilder +++ b/app/views/api/notifications/_notify_admin_order_is_paid.json.jbuilder @@ -1,4 +1,4 @@ # frozen_string_literal: true json.title notification.notification_type -json.description t('.order_paid_html', { ID: notification.attached_object.order_id }) +json.description t('.order_paid_html', **{ ID: notification.attached_object.order_id })