FIX: user education displays [object Object]

This commit is contained in:
Régis Hanol 2013-05-10 15:15:21 +02:00
parent ac36b591e9
commit 8ebed7a4b1
1 changed files with 1 additions and 1 deletions

View File

@ -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'),