Browse Source

postgres: add missing ngInject decorator

Daniel Lee 8 years ago
parent
commit
7713009caa
1 changed files with 2 additions and 0 deletions
  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';
   }