diff --git a/app/models/journal.rb b/app/models/journal.rb index b6468b629..f2283cfc3 100644 --- a/app/models/journal.rb +++ b/app/models/journal.rb @@ -229,6 +229,7 @@ class Journal < ActiveRecord::Base before = @attributes_before_change[attribute] after = journalized.send(attribute) next if before == after || (before.blank? && after.blank?) + add_attribute_detail(attribute, before, after) end end