Browse Source
Fix admin actions log crash when displaying updates of deleted announcements (#13489)
Fixes #13487
closed-social-v3
ThibG
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/helpers/admin/action_logs_helper.rb
|
|
@ -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 |