From 98a35b81f6d2a007e9ca3ba3870e21b2061c471d Mon Sep 17 00:00:00 2001 From: Yukino Song Date: Wed, 14 May 2025 23:23:38 +0800 Subject: [PATCH] Don't show apps without UUID in the WebUI --- src_assets/common/assets/web/apps.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }); },