Fix note polling

Closes #4032
This commit is contained in:
Robert Speicher
2015-12-12 12:38:12 -05:00
parent a5e449571b
commit 118d96906a
+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