Skip to content
Snippets Groups Projects
Commit 752d5280 authored by Drew Blessing's avatar Drew Blessing
Browse files

Fix trailing space issue with merge requests and issues. Fixes #2514

parent ca25289b
No related branches found
No related tags found
1 merge request!1292Fix trailing space issue with merge requests and issues. Fixes #2514
Loading
Loading
@@ -30,6 +30,7 @@ v 8.2.0 (unreleased)
- Fix incoming email config defaults
- MR target branch is now visible on a list view when it is different from project's default one
- Improve Continuous Integration graphs page
- Fix trailing whitespace issue in merge request/issue title
 
v 8.1.4
- Fix bug where manually merged branches in a MR would end up with an empty diff (Stan Hu)
Loading
Loading
Loading
Loading
@@ -158,10 +158,12 @@ class Projects::IssuesController < Projects::ApplicationController
end
 
def issue_params
params.require(:issue).permit(
permitted = params.require(:issue).permit(
:title, :assignee_id, :position, :description,
:milestone_id, :state_event, :task_num, label_ids: []
)
params[:issue][:title].strip! if params[:issue][:title]
permitted
end
 
def bulk_update_params
Loading
Loading
Loading
Loading
@@ -276,11 +276,13 @@ class Projects::MergeRequestsController < Projects::ApplicationController
end
 
def merge_request_params
params.require(:merge_request).permit(
permitted = params.require(:merge_request).permit(
:title, :assignee_id, :source_project_id, :source_branch,
:target_project_id, :target_branch, :milestone_id,
:state_event, :description, :task_num, label_ids: []
)
params[:merge_request][:title].strip! if params[:merge_request][:title]
permitted
end
 
# Make sure merge requests created before 8.0
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment