Skip to content

Commit

Permalink
CLDR-17560 don't show whole-locale warnings on row (#3817)
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Jun 20, 2024
1 parent 13b1e0c commit 03e7b4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/cldr-apps/js/src/esm/cldrVote.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down

0 comments on commit 03e7b4d

Please sign in to comment.