1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-29 03:39:38 +00:00

remove spaces inside {} of EnumerationsController

git-svn-id: http://svn.redmine.org/redmine/trunk@20436 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-19 13:30:54 +00:00
parent aea6657837
commit 1b1016ae8b

View File

@ -65,12 +65,12 @@ class EnumerationsController < ApplicationController
flash[:notice] = l(:notice_successful_update)
redirect_to enumerations_path
end
format.js { head 200 }
format.js {head 200}
end
else
respond_to do |format|
format.html { render :action => 'edit' }
format.js { head 422 }
format.html {render :action => 'edit'}
format.js {head 422}
end
end
end