diff --git a/src_assets/common/assets/web/apps.html b/src_assets/common/assets/web/apps.html index 04b1e0ea..b4ad7c72 100644 --- a/src_assets/common/assets/web/apps.html +++ b/src_assets/common/assets/web/apps.html @@ -562,7 +562,7 @@ }) .then(r => r.json()) .then(r => { - this.apps = r.apps.map(i => ({...i, launching: false, dragover: false})); + this.apps = r.apps.filter(i => i.uuid).map(i => ({...i, launching: false, dragover: false})); this.currentApp = r.current_app; }); },