Browse Source

fix selecting datasource using enter key

Marcus Efraimsson 7 years ago
parent
commit
e5e886ccb7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/core/components/form_dropdown/form_dropdown.ts

+ 1 - 1
public/app/core/components/form_dropdown/form_dropdown.ts

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