ソースを参照

postgres: add missing ngInject decorator

Daniel Lee 8 年 前
コミット
7713009caa
1 ファイル変更2 行追加0 行削除
  1. 2 0
      public/app/plugins/datasource/postgres/module.ts

+ 2 - 0
public/app/plugins/datasource/postgres/module.ts

@@ -7,6 +7,8 @@ class PostgresConfigCtrl {
   static templateUrl = 'partials/config.html';
 
   current: any;
+
+   /** @ngInject **/
   constructor($scope) {
     this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'require';
   }