1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

this should be accessing the hash, not calling a method

This commit is contained in:
Aaron Patterson 2014-08-13 14:31:55 -07:00
parent efb835c9c0
commit d4981c393b

View file

@ -3,7 +3,7 @@ Rails.root: <%= defined?(Rails) && Rails.respond_to?(:root) ? Rails.root : "unse
<% @traces.each do |name, trace| %>
<% if trace.any? %>
<%= name %>
<%= trace.map(&:trace).join("\n") %>
<%= trace.map { |t| t[:trace] }.join("\n") %>
<% end %>
<% end %>