Merge branch 'rs-issue-4032' into 'master'

Fix note polling

Closes #4032

See merge request !2084
This commit is contained in:
Douwe Maan
2015-12-15 12:16:17 -05:00
committed by Robert Speicher
parent 19daba8a6f
commit 1322bd78cf
+2 -1
View File
@@ -13,7 +13,8 @@ class Projects::NotesController < Projects::ApplicationController
@notes.each do |note|
notes_json[:notes] << {
id: note.id,
html: note_to_html(note)
html: note_to_html(note),
valid: note.valid?
}
end