Don't flag empty name tag as mistaken (close #7153)

This commit is contained in:
Quincy Morgan
2020-01-13 14:47:05 -05:00
parent c75496e5c3
commit 0eb9912e01

View File

@@ -162,7 +162,7 @@ export function validationSuspiciousName() {
if (notNames.length) {
for (var i in notNames) {
var notName = notNames[i];
if (value === notName) {
if (notName && value === notName) {
issues.push(makeIncorrectNameIssue(entity.id, key, value, langCode));
continue;
}