app/views/effective/logs/_log.html.haml in effective_logging-1.10.7 vs app/views/effective/logs/_log.html.haml in effective_logging-1.10.8

- old
+ new

@@ -3,10 +3,10 @@ .row .col-sm-10 - parents_of_log(log).each do |parent| = link_to(log.message, (request.fullpath.gsub(log.to_param, parent.to_param) rescue '#')) = ' > ' - %p= log.message + %p= log.message.html_safe .col-sm-2.text-right = link_to 'Prev', request.fullpath.gsub(log.to_param, log.prev_log.try(:to_param).to_s), class: 'btn btn-default', disabled: log.prev_log.blank? = link_to 'Next', request.fullpath.gsub(log.to_param, log.next_log.try(:to_param).to_s), class: 'btn btn-default', disabled: log.next_log.blank? .panel-body