From 03e7b4d6b67ceeca493011a82cde7408f6709ae9 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 20 Jun 2024 15:27:08 -0500 Subject: [PATCH] CLDR-17560 don't show whole-locale warnings on row (#3817) --- tools/cldr-apps/js/src/esm/cldrVote.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/cldr-apps/js/src/esm/cldrVote.mjs b/tools/cldr-apps/js/src/esm/cldrVote.mjs index 13ca7c72a46..093cb45fe50 100644 --- a/tools/cldr-apps/js/src/esm/cldrVote.mjs +++ b/tools/cldr-apps/js/src/esm/cldrVote.mjs @@ -463,6 +463,10 @@ function getTestKind(testResults) { var theKind = null; for (var i = 0; i < testResults.length; i++) { var tr = testResults[i]; + if (tr.entireLocale) { + // entire-locale tests don't affect the overall Kind. + continue; + } if (tr.type == "Warning") { theKind = tr.type; } else if (tr.type == "Error") {