فهرست منبع

Merge pull request #13977 from grafana/13932_ds_selector

fix selecting datasource using enter key
Torkel Ödegaard 7 سال پیش
والد
کامیت
b592d5d731
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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) {
         setTimeout(() => {
           this.inputElement.blur();
-        }, 100);
+        }, 300);
       }
     });