FIX: Fixed changing composer mode escaping title (#7191)

This commit is contained in:
Tim Lange
2019-03-25 08:44:26 +01:00
committed by Arpit Jalan
parent 5a9dd923cc
commit dcd56cf593
2 changed files with 10 additions and 2 deletions

View File

@@ -910,7 +910,7 @@ export default Ember.Controller.extend({
opts.topicTitle &&
opts.topicTitle.length <= this.siteSettings.max_topic_title_length
) {
this.set("model.title", escapeExpression(opts.topicTitle));
this.set("model.title", opts.topicTitle);
}
if (opts.topicCategoryId) {