From 7713009caa29e541fff7cee12f461109125d144c Mon Sep 17 00:00:00 2001 From: Daniel Lee Date: Wed, 11 Oct 2017 09:15:55 +0200 Subject: [PATCH] postgres: add missing ngInject decorator --- public/app/plugins/datasource/postgres/module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/plugins/datasource/postgres/module.ts b/public/app/plugins/datasource/postgres/module.ts index e2ac568d998..09a3f43c9ea 100644 --- a/public/app/plugins/datasource/postgres/module.ts +++ b/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'; }