Don't show apps without UUID in the WebUI

This commit is contained in:
Yukino Song
2025-05-14 23:23:38 +08:00
parent 93540b97fe
commit 98a35b81f6

View File

@@ -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;
});
},