Skip to content

Commit

Permalink
Disable autocomplete on the localized field
Browse files Browse the repository at this point in the history
(closes #5558)
  • Loading branch information
bhousel committed Dec 7, 2018
1 parent 247900f commit d574bfc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/ui/fields/localized.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {


export function uiFieldLocalized(field, context) {
console.log('new uiFieldLocalized!');
var dispatch = d3_dispatch('change', 'input');
var wikipedia = services.wikipedia;
var input = d3_select(null);
Expand All @@ -42,7 +41,7 @@ console.log('new uiFieldLocalized!');

var brandcombo = d3_combobox()
.container(context.container())
// .canAutocomplete(false)
.canAutocomplete(false)
.minItems(1);

var _selection = d3_select(null);
Expand Down

0 comments on commit d574bfc

Please sign in to comment.