소스 검색

Fix: Query editor toggle edit mode fix (#16394)

Increase timeout when waiting for datasource toggleEditorMode check 

Fixes  #16393
Sean Lafferty 6 년 전
부모
커밋
c2d399b059
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      public/app/features/dashboard/panel_editor/QueryEditorRow.tsx

+ 1 - 1
public/app/features/dashboard/panel_editor/QueryEditorRow.tsx

@@ -161,7 +161,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
     // give angular time to compile
     setTimeout(() => {
       this.setState({ hasTextEditMode: !!this.angularScope.toggleEditorMode });
-    }, 10);
+    }, 100);
   }
 
   onToggleCollapse = () => {