소스 검색

make default mode for table panels raw editor

Sven Klemm 7 년 전
부모
커밋
30fce34d9c
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      public/app/plugins/datasource/postgres/query_ctrl.ts

+ 1 - 0
public/app/plugins/datasource/postgres/query_ctrl.ts

@@ -54,6 +54,7 @@ export class PostgresQueryCtrl extends QueryCtrl {
       if (this.panelCtrl.panel.type === 'table') {
         this.target.format = 'table';
         this.target.rawSql = 'SELECT 1';
+        this.target.rawQuery = true;
       } else {
         this.target.rawSql = defaultQuery;
         this.datasource.metricFindQuery(this.metaBuilder.findMetricTable()).then(result => {