Commit d8410119 authored by mercury233's avatar mercury233

scroll to top when verifying files

parent 08851dd5
Pipeline #5821 passed with stages
in 2 minutes and 14 seconds
...@@ -230,6 +230,7 @@ export class AppDetailComponent implements OnInit, OnChanges { ...@@ -230,6 +230,7 @@ export class AppDetailComponent implements OnInit, OnChanges {
} }
async verifyFiles(app: App) { async verifyFiles(app: App) {
this.el.nativeElement.scrollTo(0, 0);
try { try {
await this.appsService.update(app, true); await this.appsService.update(app, true);
let installedMods = this.appsService.findChildren(app).filter((child) => { let installedMods = this.appsService.findChildren(app).filter((child) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment