fix: data source dropdown select

This commit is contained in:
Torkel Ödegaard 2017-06-16 11:43:37 -04:00
parent 25f88e9b3a
commit 724368d0cd

View File

@ -72,7 +72,9 @@ export class FormDropdownCtrl {
this.inputElement.keydown(evt => {
if (evt.keyCode === 13) {
this.inputElement.blur();
setTimeout(() => {
this.inputElement.blur();
}, 100);
}
});