Jelajahi Sumber

make default mode for table panels raw editor

Sven Klemm 7 tahun lalu
induk
melakukan
30fce34d9c
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  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 => {