diff options
author | Devaev Maxim <[email protected]> | 2021-05-01 03:53:29 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-05-01 03:53:29 +0300 |
commit | 8dbf2ab3d01fde57c4d432de7f07aaa10660160e (patch) | |
tree | ebca9872c514eca073e496fcfe398a8d55d3fe16 /web | |
parent | 4422653e40f2a1fe5c24cde3ed51dfe0bd7c9898 (diff) |
janus manifest
Diffstat (limited to 'web')
-rw-r--r-- | web/share/js/index/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 5f715007..a019887e 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -80,7 +80,7 @@ function __loadKvmdInfo() { } for (let app of apps) { - if (app.enabled || app.started) { + if (app.place >= 0 && (app.enabled || app.started)) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); } } |