Commit 8b5159ecc0ec08b5ee56911ba3147714d900f6ac

Authored by Josh Starcher
Committed by Vasiliy Ermolovich
1 parent 966dec6b
Exists in master and in 1 other branch production

serialized attributes need to be cast to string

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/notices/_user_attributes.html.haml
... ... @@ -6,4 +6,4 @@
6 6 - user.each do |user_key, user_value|
7 7 %tr
8 8 %th= user_key
9   - %td= auto_link(user_value).html_safe
  9 + %td= auto_link(user_value.to_s).html_safe
... ...