mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-20 20:11:19 -04:00
FIX: user education displays [object Object]
This commit is contained in:
parent
ac36b591e9
commit
8ebed7a4b1
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ Discourse.ComposerController = Discourse.Controller.extend({
|
|||
var educationKey = this.get('content.creatingTopic') ? 'new-topic' : 'new-reply';
|
||||
var composerController = this;
|
||||
Discourse.ajax("/education/" + educationKey).then(function(result) {
|
||||
composerController.set('educationContents', result);
|
||||
composerController.set('educationContents', result.responseText);
|
||||
});
|
||||
}.observes('typedReply', 'content.creatingTopic', 'Discourse.currentUser.reply_count'),
|
||||
|
||||
|
|
Loading…
Reference in a new issue