aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb24
1 files changed, 11 insertions, 13 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb
index e181b6c539..b6c6d2f50d 100644
--- a/actionpack/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb
+++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/_actions.html.erb
@@ -1,15 +1,13 @@
-<% if ActiveSupport::ActionableError === exception %>
- <% actions = ActiveSupport::ActionableError.actions(exception) %>
+<% actions = ActiveSupport::ActionableError.actions(exception) %>
- <% if actions.any? %>
- <div class="actions">
- <% actions.each do |action, _| %>
- <%= button_to action, ActionDispatch::ActionableExceptions.endpoint, params: {
- error: exception.class.name,
- action: action,
- location: request.path
- } %>
- <% end %>
- </div>
- <% end %>
+<% if actions.any? %>
+ <div class="actions">
+ <% actions.each do |action, _| %>
+ <%= button_to action, ActionDispatch::ActionableExceptions.endpoint, params: {
+ error: exception.class.name,
+ action: action,
+ location: request.path
+ } %>
+ <% end %>
+ </div>
<% end %>