diff --git a/js/id/ui/preset/combo.js b/js/id/ui/preset/combo.js index f628c34ae..cafd3e70b 100644 --- a/js/id/ui/preset/combo.js +++ b/js/id/ui/preset/combo.js @@ -40,7 +40,9 @@ iD.ui.preset.multiCombo = function(field, context) { dval = clean(dval || ''); if (optstrings) { - var match = _.find(comboData, function(o) { return o.value === dval && o.key; }); + var match = _.find(comboData, function(o) { + return o.key && clean(o.value) === dval; + }); if (match) { return match.key; }