Commit d87d1e79 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'patch-24' into 'master'

Fix graph notes number duplication.

See merge request gitlab-org/gitlab-ce!15696
parents 483b5f1b 5efd2dd0
......@@ -8,7 +8,7 @@ module GraphHelper
# append note count
notes_count = @graph.notes[commit.id]
refs << "[#{notes_count} #{pluralize(notes_count, 'note')}]" if notes_count > 0
refs << "[#{pluralize(notes_count, 'note')}]" if notes_count > 0
refs
end
......
---
title: Fix graph notes number duplication.
merge_request: 15696
author: Vladislav Kaverin
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment