diff --git a/pages/apple-silicon-compatibility.vue b/pages/apple-silicon-compatibility.vue
index bffeffe..e903252 100644
--- a/pages/apple-silicon-compatibility.vue
+++ b/pages/apple-silicon-compatibility.vue
@@ -35,6 +35,64 @@
hidden
@change="fileInputChanged"
>
+
+
+
+ Total Files: {{ foundFiles.length }}
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+ {{ appScan.name.charAt(0) }}
+
+ {{ appScan.name }}
{{ appScan.type }}
+
+ {{ appScan.statusMessage }}
+
+
+
+
+
+
+
@@ -89,6 +147,12 @@ export default {
}
},
computed: {
+ foundFiles () {
+ return this.appsBeingScanned.filter( appScan => {
+ return !appScan.statusMessage.includes('⏭')
+ })
+ },
+
title () {
return `Apple Silicon Compatibility`
},