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:
parent
efb835c9c0
commit
d4981c393b
1 changed files with 1 additions and 1 deletions
|
@ -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 %>
|
||||
|
|
Loading…
Reference in a new issue