diff --git a/pages/kind/_slug.vue b/pages/kind/_slug.vue
index 44874e1..3048ff1 100644
--- a/pages/kind/_slug.vue
+++ b/pages/kind/_slug.vue
@@ -4,9 +4,12 @@
{{ section.label }} that are reported to support Apple Silicon
-
+
+ Supported apps include {{ supportedAppList.join(', ') }}.
+
{
return app.section.slug === this.slug
}).section
},
- sectionAppList() {
+ sectionAppList () {
return appList.filter(app => {
return app.section.slug === this.slug
})
},
+ supportedAppList () {
+ return this.sectionAppList.filter(app => {
+ console.log('app.status', app.status)
+ return app.status.includes('yes')
+ }).map(app => app.name)
+ },
}
}