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

remove spaces inside {} of BoardsController

git-svn-id: http://svn.redmine.org/redmine/trunk@20425 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-18 16:16:30 +00:00
parent d0cd1083b3
commit 460c037e60

View File

@ -93,12 +93,12 @@ class BoardsController < ApplicationController
flash[:notice] = l(:notice_successful_update)
redirect_to_settings_in_projects
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