Remove app start/stop button from toolbar

This commit is contained in:
Johannes Zellner
2025-07-23 13:16:13 +02:00
parent 1063dbea02
commit a839638478
4 changed files with 31 additions and 55 deletions
-7
View File
@@ -171,13 +171,6 @@ function create() {
return {
name: 'AppsModel',
getTask,
isStopped(app) {
if (app.installationState === ISTATES.PENDING_START || app.installationState === ISTATES.PENDING_STOP) {
return app.installationState === ISTATES.PENDING_START;
} else {
return app.runState === RSTATES.STOPPED;
}
},
async install(manifest, config) {
const data = {
appStoreId: manifest.id + '@' + manifest.version,