Resetting scroll status when navigating between entities.

This commit is contained in:
ThePendulum 2020-06-28 04:02:44 +02:00
parent 087d349cec
commit f4029f0ef7
1 changed files with 3 additions and 1 deletions

View File

@ -176,8 +176,10 @@ function beforeDestroy() {
}
async function route() {
this.expanded = false;
await this.fetchEntity();
this.expanded = false;
this.updateScroll();
}
export default {