1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 16:07:34 +02:00

Don't load discussions on admin (#152)

Fixes https://github.com/flarum/core/issues/3201
This commit is contained in:
Alexander Skvortsov
2021-12-14 13:19:08 -05:00
committed by GitHub
parent f7777ff9e3
commit f47f3f601d

View File

@@ -44,7 +44,7 @@ export default class TagsPage extends ExtensionPage {
this.loading = true;
app.store.find('tags', { include: 'parent,lastPostedDiscussion' }).then(() => {
app.store.find('tags', { include: 'parent' }).then(() => {
this.loading = false;
m.redraw();