Merge pull request #13977 from grafana/13932_ds_selector

fix selecting datasource using enter key
This commit is contained in:
Torkel Ödegaard
2018-11-06 13:27:59 +01:00
committed by GitHub

View File

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