Stackdriver: Corrected field title and removed debug logging

This commit is contained in:
Erik Sundell
2018-09-07 09:17:33 +02:00
committed by Daniel Lee
parent 92d631986f
commit 684aa3ff33
2 changed files with 1 additions and 2 deletions

View File

@@ -16,7 +16,6 @@ export class StackdriverConfigCtrl {
this.current.jsonData = this.current.jsonData || {}; this.current.jsonData = this.current.jsonData || {};
this.current.secureJsonData = this.current.secureJsonData || {}; this.current.secureJsonData = this.current.secureJsonData || {};
this.current.secureJsonFields = this.current.secureJsonFields || {}; this.current.secureJsonFields = this.current.secureJsonFields || {};
console.log(this.current.secureJsonFields.privateKey);
this.defaultProject = this.current.jsonData.defaultProject; this.defaultProject = this.current.jsonData.defaultProject;
this.projects = []; this.projects = [];
} }

View File

@@ -32,7 +32,7 @@
</div> </div>
</div> </div>
<div class="gf-form" ng-if="ctrl.current.secureJsonFields.privateKey"> <div class="gf-form" ng-if="ctrl.current.secureJsonFields.privateKey">
<span class="gf-form-label width-9">Client Secret</span> <span class="gf-form-label width-9">Private Key</span>
<input type="text" class="gf-form-input max-width-12" disabled="disabled" value="configured"> <input type="text" class="gf-form-input max-width-12" disabled="disabled" value="configured">
</div> </div>