Fix adding name to entities

This commit is contained in:
Ansis Brammanis
2013-02-27 14:50:21 -05:00
parent 358b31389c
commit 0558741472
+1 -1
View File
@@ -82,7 +82,7 @@ iD.ui.TagEditor = function(context) {
.attr('placeholder', 'unknown')
.attr('class', 'major')
.attr('type', 'text')
.property('value', entity.tags.name)
.property('value', entity.tags.name || '')
.on('blur', function() {
event.changeTags();
});