From 726d3e050d25cc5b2d5968e938b09a68e6753c03 Mon Sep 17 00:00:00 2001 From: Chris Ziogas Date: Fri, 5 Jan 2024 12:12:55 +0200 Subject: [PATCH] Rename "Not ready" to "Unknown" for "service readiness" chart --- store/operators.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/operators.js b/store/operators.js index b79a2a3..35a6648 100644 --- a/store/operators.js +++ b/store/operators.js @@ -62,7 +62,7 @@ export const actions = { const parseOperators = function (operators) { const upgradedOperators = { Ready: 0, - 'Not Ready': 0, + Unknown: 0, } for (const [, category] of Object.entries(operators)) { @@ -70,7 +70,7 @@ const parseOperators = function (operators) { if (operator.status === 1) { upgradedOperators.Ready++ } else { - upgradedOperators['Not Ready']++ + upgradedOperators.Unknown++ } } }