From 460c037e60408014c8ae27b45ec592b02e827973 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 18 Nov 2020 16:16:30 +0000 Subject: [PATCH] remove spaces inside {} of BoardsController git-svn-id: http://svn.redmine.org/redmine/trunk@20425 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/boards_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/boards_controller.rb b/app/controllers/boards_controller.rb index d3b02e0ff..56202a79f 100644 --- a/app/controllers/boards_controller.rb +++ b/app/controllers/boards_controller.rb @@ -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