Wheelchair should have "yes", "limited", "no" (fixes #1154)

This commit is contained in:
John Firebaugh
2013-03-26 14:02:31 -07:00
parent cac5c7192c
commit aff363b101
+1 -1
View File
@@ -10,7 +10,7 @@ iD.ui.preset.radio = function(field) {
.attr('class', 'preset-input-wrap radio-wrap');
buttons = buttonwrap.selectAll('button')
.data(field.keys || field.options)
.data(field.options || field.keys)
.enter()
.append('button')
.text(function(d) { return field.t('options.' + d, { 'default': d }); })