Add repair app configure view

This commit is contained in:
Johannes Zellner
2025-02-22 18:31:21 +01:00
parent 3e2177b402
commit c593b4180a
5 changed files with 105 additions and 21 deletions

View File

@@ -149,7 +149,10 @@ export default {
if (!confirmed) return;
this.busyRestart = true;
await this.appsModel.restart(this.id);
const [error] = await this.appsModel.restart(this.id);
if (error) return console.error(error);
this.busyRestart = false;
},
async connect(retry = false) {