Skip to content
Snippets Groups Projects
Unverified Commit 89077fb6 authored by ThibG's avatar ThibG Committed by GitHub
Browse files

Fix admin actions log crash when displaying updates of deleted announcements (#13489)

Fixes #13487
parent d18d6c29
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ module Admin::ActionLogsHelper
I18n.t('admin.action_logs.deleted_status')
end
when 'Announcement'
truncate(attributes['text'])
truncate(attributes['text'].is_a?(Array) ? attributes['text'].last : attributes['text'])
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment