mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Fixed changing composer mode escaping title (#7191)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user