mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Don't flag empty name tag as mistaken (close #7153)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user