Commit c0d7b5bb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #4164 from hiroponz/fix-postgres-error

Fix postgres error when displaying network graph.
parents f82851ca aefdcdd4
......@@ -25,7 +25,7 @@ module Network
def collect_notes
h = Hash.new(0)
@project.notes.where('noteable_type = ?' ,"Commit").group('notes.commit_id').select('notes.commit_id, count(notes.id) as note_count').each do |item|
h[item["commit_id"]] = item["note_count"]
h[item.commit_id] = item.note_count.to_i
end
h
end
......
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