Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjurre <jurrestender+github@gmail.com>2016-12-20 17:23:20 +0300
committerjurre <jurrestender+github@gmail.com>2016-12-20 18:14:09 +0300
commit33564b113386b3b9c1606dcc2ff7251c178667e5 (patch)
tree4088e21aaf933f06ef26292909d37c8c2e019997
parentd84cfeaf21bb60c09061ad6c7bf135c37d063162 (diff)
Make 'unmarked as WIP' message more consistent
-rw-r--r--app/services/system_note_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/system_note_service.rb b/app/services/system_note_service.rb
index 8b48d90f60b..7613ecd5021 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -146,7 +146,7 @@ module SystemNoteService
end
def remove_merge_request_wip(noteable, project, author)
- body = 'unmarked as a Work In Progress'
+ body = 'unmarked as a **Work In Progress**'
create_note(noteable: noteable, project: project, author: author, note: body)
end