mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: Reset expanding of first post when entering a topic.
This commit is contained in:
parent
89031b9186
commit
c22cc2bf03
1 changed files with 3 additions and 2 deletions
|
@ -206,8 +206,9 @@ const TopicRoute = Discourse.Route.extend(ShowFooter, {
|
|||
}
|
||||
|
||||
controller.setProperties({
|
||||
model: model,
|
||||
editingTopic: false
|
||||
model,
|
||||
editingTopic: false,
|
||||
firstPostExpanded: false
|
||||
});
|
||||
|
||||
Discourse.TopicRoute.trigger('setupTopicController', this);
|
||||
|
|
Loading…
Reference in a new issue