diff options
author | Devaev Maxim <[email protected]> | 2021-04-17 15:41:05 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2021-04-17 15:41:05 +0300 |
commit | be012fd38d6f6f2d269dcbffd3aafe59a2a9a40c (patch) | |
tree | 0742bf1e2934f8d882e9e7b3c81360d7204285ee /web/share/js/index | |
parent | 3a2ffcfd5c0591160333d1b347880f09eb2ee056 (diff) |
terminal window
Diffstat (limited to 'web/share/js/index')
-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 ee829480..5f715007 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) { + if (app.enabled || app.started) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); } } |