mirror of
https://github.com/flarum/core.git
synced 2025-08-08 09:26:34 +02:00
Fix wrong subtags listing in sidebar
This commit is contained in:
@@ -26,7 +26,7 @@ export default class TagsPage extends Page {
|
|||||||
|
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
||||||
app.tagList.load(['children', 'lastPostedDiscussion']).then(() => {
|
app.tagList.load(['children', 'lastPostedDiscussion', 'parent']).then(() => {
|
||||||
this.tags = sortTags(app.store.all('tags').filter(tag => !tag.isChild()));
|
this.tags = sortTags(app.store.all('tags').filter(tag => !tag.isChild()));
|
||||||
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
Reference in New Issue
Block a user