Semantic issue in Javascript sonarsource explanation

In Rules Explorer - JS 1439 the example given as a noncompliant is

myLabel: if (i % 2 == 0) {  // Noncompliant
  if (i == 12) {
    console.log("12");
    break myLabel;
  }
  console.log("Odd number, but not 12");
}

The console.log statement should be "Even number, but not 12"

Thanks for the feedback. The fix is on its way.