summaryrefslogtreecommitdiff
path: root/app/services/system_note_service.rb
diff options
context:
space:
mode:
authorJose Ivan Vargas <jvargas@gitlab.com>2018-04-11 16:21:36 -0500
committerJose Ivan Vargas <jvargas@gitlab.com>2018-04-16 10:23:14 -0500
commita6ddeb54dcdce073bf4cb92110ab9f462945c2ff (patch)
tree873a5dbcfdc2eb426def2e08a52b60ee816c4350 /app/services/system_note_service.rb
parent3a1b961dfaec131cad7472fea202d4092c1880d6 (diff)
downloadgitlab-ce-a6ddeb54dcdce073bf4cb92110ab9f462945c2ff.tar.gz
Add a comma to the time system notes estimates
Diffstat (limited to 'app/services/system_note_service.rb')
-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 00bf5434b7f..958ef065012 100644
--- a/app/services/system_note_service.rb
+++ b/app/services/system_note_service.rb
@@ -159,7 +159,7 @@ module SystemNoteService
body = if noteable.time_estimate == 0
"removed time estimate"
else
- "changed time estimate to #{parsed_time}"
+ "changed time estimate to #{parsed_time},"
end
create_note(NoteSummary.new(noteable, project, author, body, action: 'time_tracking'))