diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-26 18:48:33 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-26 18:48:33 +0100 |
commit | 3282448878dd2640ea47dc1a77a4ae958ba8923e (patch) | |
tree | 35aefcd9afb5f6f5dc1a812bac587804c4fa6274 /app/controllers | |
parent | c3e9ba6a66bfcb9e33edebc73adea0a17d7f02a6 (diff) |
Fix #86 - resolve layout breaking on zoom-out on accounts grid
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/application_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index e2d879d58..0a6b50a29 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -49,13 +49,13 @@ class ApplicationController < ActionController::Base def not_found respond_to do |format| - format.any { head 404 } + format.any { head 404 } end end def gone respond_to do |format| - format.any { head 410 } + format.any { head 410 } end end |