fix(draft-list): Don't render html string in draft subject

This commit is contained in:
Juan Tejada 2016-09-28 16:02:27 -07:00
parent 2b34d2137a
commit b14d52b482

View file

@ -16,7 +16,7 @@ subject = (subj) ->
if (subj ? "").trim().length is 0
return <span className="no-subject">(No Subject)</span>
else
return subj
return text = Utils.extractTextFromHtml(subj)
ParticipantsColumn = new ListTabular.Column
name: "Participants"