Explorar el Código

postgres: add missing ngInject decorator

Daniel Lee hace 8 años
padre
commit
7713009caa
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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';
   static templateUrl = 'partials/config.html';
 
 
   current: any;
   current: any;
+
+   /** @ngInject **/
   constructor($scope) {
   constructor($scope) {
     this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'require';
     this.current.jsonData.sslmode = this.current.jsonData.sslmode || 'require';
   }
   }