diff --git a/components/list-summary.vue b/components/list-summary.vue index 7ef2ab5..da1e767 100644 --- a/components/list-summary.vue +++ b/components/list-summary.vue @@ -85,7 +85,15 @@ export default { percent: this.unsupportedPercent, verbiage: `are not working. ` }, - ] + ].filter( percentage => { + const isZero = (percentage.percent === 0) + const isUnreported = (percentage.emoji === '🔶') + + // Filter out + if (isUnreported && isZero) return false + + return true + }) }, nonEmptyPercentages () { return this.percentages.filter(percentage => {