app configure: refresh app when a task is started

This commit is contained in:
Girish Ramakrishnan
2026-03-30 10:25:26 +02:00
parent 4a02e988c1
commit 8d0160a3e7
7 changed files with 34 additions and 31 deletions
+2 -1
View File
@@ -8,7 +8,7 @@ import PortBindings from '../PortBindings.vue';
import AppsModel from '../../models/AppsModel.js';
import DomainsModel from '../../models/DomainsModel.js';
const props = defineProps([ 'app' ]);
const props = defineProps([ 'app', 'refreshApp' ]);
const appsModel = AppsModel.create();
const domainsModel = DomainsModel.create();
@@ -139,6 +139,7 @@ async function onSubmit() {
return console.error(error);
}
await props.refreshApp();
busy.value = false;
}