FIX: Topic title wasn't showing properly when entering lower in topics

This commit is contained in:
Robin Ward
2017-03-28 16:28:26 -04:00
parent 322ed7124e
commit f3540332a8
3 changed files with 14 additions and 3 deletions

View File

@ -142,7 +142,10 @@ export default Ember.Component.extend(AddArchetypeClass, Scrolling, {
this.appEvents.trigger('header:show-topic', topic);
} else {
if (!DiscourseURL.isJumpScheduled()) {
this.appEvents.trigger('header:hide-topic');
const loadingNear = topic.get('postStream.loadingNearPost') || 1;
if (loadingNear === 1) {
this.appEvents.trigger('header:hide-topic');
}
}
}
}