Use case sensitive combo for changeset autocompletion

(closes #3039)
This commit is contained in:
Bryan Housel
2016-04-15 10:44:18 -04:00
parent ae15275252
commit 435e7b931a

View File

@@ -83,7 +83,7 @@ iD.ui.Commit = function(context) {
}
}
commentField.call(d3.combobox().data(comments));
commentField.call(d3.combobox().caseSensitive(true).data(comments));
});
var clippyArea = commentSection.append('div')