mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Merge pull request #3499 from fantasticfears/user-card
FIX: add missing username properties to usercard
This commit is contained in:
commit
0e863242ad
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export default Ember.Controller.extend({
|
|||
return;
|
||||
}
|
||||
|
||||
this.setProperties({ user: null, userLoading: username, cardTarget: target, topicPostCount: null });
|
||||
this.setProperties({ user: null, username, userLoading: username, cardTarget: target, topicPostCount: null });
|
||||
|
||||
const args = { stats: false };
|
||||
args.include_post_count_for = this.get('controllers.topic.model.id');
|
||||
|
|
Loading…
Reference in a new issue