Fix flow alerts export (e.g. email)

This commit is contained in:
Alfredo Cardigliano 2021-07-19 10:19:31 +02:00
parent 9c8217c34c
commit aa072bef55
2 changed files with 8 additions and 4 deletions

View file

@ -152,7 +152,7 @@ function email.dequeueRecipientAlerts(recipient, budget, high_priority)
for _, json_message in ipairs(notifications) do
local notif = json.decode(json_message)
message_body[#message_body + 1] = alert_utils.formatAlertNotification(notif, {nohtml=true})
message_body[#message_body + 1] = alert_utils.formatAlertNotification(notif, {show_entity = true, nohtml=true})
end
message_body = table.concat(message_body, "<br>")