1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 07:27:39 +02:00

Revert part of last commit

This commit is contained in:
Toby Zerner
2015-10-20 22:06:44 +10:30
parent 726d17dc4a
commit 281f1f39c2

View File

@@ -75,6 +75,9 @@ export default class FlagList extends Component {
app.session.user.pushAttributes({newFlagsCount: 0});
app.cache.flags = flags.sort((a, b) => b.time() - a.time());
})
.finally(this.loaded.bind(this));
.finally(() => {
this.loading = false;
m.redraw();
});
}
}