Commit 724368d0 by Torkel Ödegaard

fix: data source dropdown select

parent 25f88e9b
...@@ -72,7 +72,9 @@ export class FormDropdownCtrl { ...@@ -72,7 +72,9 @@ export class FormDropdownCtrl {
this.inputElement.keydown(evt => { this.inputElement.keydown(evt => {
if (evt.keyCode === 13) { if (evt.keyCode === 13) {
setTimeout(() => {
this.inputElement.blur(); this.inputElement.blur();
}, 100);
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment