mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
fix(draft-list): Don't render html string in draft subject
This commit is contained in:
parent
2b34d2137a
commit
b14d52b482
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue