Removing blank field

This commit is contained in:
JamesKingdom
2017-08-01 16:45:10 +01:00
parent 6cbae830c2
commit f69463b5c8
+1 -1
View File
@@ -40,7 +40,7 @@ export function uiPreset(context) {
field.show = show;
field.shown = function() {
return field.id === '' || field.show || _.some(field.keys, function(key) { return !!tags[key]; });
return field.show || _.some(field.keys, function(key) { return !!tags[key]; });
};
field.modified = function() {