From 790bb087183995aa3526a2114391e17ff2e854af Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Sat, 17 Apr 2021 19:56:10 +0000 Subject: [PATCH] fix check status in summary tab --- web/src/components/SummaryTab.vue | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/web/src/components/SummaryTab.vue b/web/src/components/SummaryTab.vue index 89b558db..3810e71d 100644 --- a/web/src/components/SummaryTab.vue +++ b/web/src/components/SummaryTab.vue @@ -80,7 +80,16 @@ {{ summary.checks.info }} checks info - {{ summary.checks.total }} checks awaiting first synchronization @@ -113,8 +122,8 @@ export default { return {}; }, methods: { - awaitingSync(total, passing, failing) { - return total !== 0 && passing === 0 && failing === 0 ? true : false; + awaitingSync(total, passing, failing, warning, info) { + return total !== 0 && passing === 0 && failing === 0 && warning === 0 && info === 0; }, refreshSummary() { this.$q.loading.show();