diff --git a/app/assets/javascripts/discourse/models/post.js b/app/assets/javascripts/discourse/models/post.js index 1c894afbf9a..7d06c66dfa7 100644 --- a/app/assets/javascripts/discourse/models/post.js +++ b/app/assets/javascripts/discourse/models/post.js @@ -184,7 +184,7 @@ Discourse.Post = Discourse.Model.extend({ expand: function() { var self = this; return Discourse.ajax("/posts/" + this.get('id') + "/expand-embed").then(function(post) { - self.set('cooked', post.cooked); + self.set('cooked', "
" + post.cooked + "
" ); }); },