浏览代码

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);
       }
     });