fix(console): rm mfa link, policy issues, consistency for table spacing (#585)

* rm console.logs

* fix application table

* fix project table padding

* rm user mfa link

* disable policy saving without desc

* lint
This commit is contained in:
Max Peintner
2020-08-17 09:44:21 +02:00
committed by GitHub
parent f61b30420a
commit b0af932dfb
13 changed files with 15 additions and 29 deletions

View File

@@ -28,10 +28,7 @@ export class GrpcService {
public async loadAppEnvironment(): Promise<any> {
return this.http.get('./assets/environment.json')
.toPromise().then((data: any) => {
console.log('init grpc');
if (data && data.authServiceUrl && data.mgmtServiceUrl && data.issuer) {
console.log('init grpc promiseclients');
this.auth = new AuthServicePromiseClient(data.authServiceUrl);
this.mgmt = new ManagementServicePromiseClient(data.mgmtServiceUrl);
this.admin = new AdminServicePromiseClient(data.adminServiceUrl);