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

Fixes #13487
th-downstream
ThibG 5 years ago committed by GitHub
parent efd5db8f21
commit a93fc74d31

@ -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

Loading…
Cancel
Save