diff --git a/src/main/index.js b/src/main/index.js index b2241b1..1de4655 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -29,7 +29,6 @@ async function getApps() { let appCollection = await getapps() let filters = [(a) => a.appid.includes('.exe'), (a) => a.appid.includes('steam')] console.log(` Total apps ${appCollection.length}`) - // return appCollection.filter((app) => app.appid.includes('.exe')) return appCollection.filter((app) => filters.some((fn) => fn(app))) } diff --git a/src/renderer/src/components/COMselect.vue b/src/renderer/src/components/COMselect.vue index 3a98cfa..9ee91e5 100644 --- a/src/renderer/src/components/COMselect.vue +++ b/src/renderer/src/components/COMselect.vue @@ -7,12 +7,7 @@
@@ -44,6 +39,8 @@ function generateAppSelector() { for (let app in props.installedApps) { optionsString += `` } - return `
` + return `
+
+ ` }