mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-15 17:58:36 +00:00
fix(console): display links on the app detail from well-known/openid-connect endpoint correctly (#6469)
fix: display endpoints from wellknown correctly
This commit is contained in:
parent
bcf99e9749
commit
c8775c41e8
@ -427,6 +427,7 @@
|
|||||||
|
|
||||||
<div class="app-info-row">
|
<div class="app-info-row">
|
||||||
<div class="app-info-wrapper" *ngFor="let wellKnownV of wellKnownMap$ | async | keyvalue">
|
<div class="app-info-wrapper" *ngFor="let wellKnownV of wellKnownMap$ | async | keyvalue">
|
||||||
|
<ng-container *ngIf="wellKnownV.key.endsWith('endpoint')">
|
||||||
<p class="app-info-row-title cnsl-secondary-text">{{ wellKnownV.key }}</p>
|
<p class="app-info-row-title cnsl-secondary-text">{{ wellKnownV.key }}</p>
|
||||||
<div class="app-copy-row">
|
<div class="app-copy-row">
|
||||||
<div *ngIf="wellKnownV.value" class="environment">
|
<div *ngIf="wellKnownV.value" class="environment">
|
||||||
@ -440,7 +441,8 @@
|
|||||||
{{ wellKnownV.value }}
|
{{ wellKnownV.value }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div></ng-container
|
||||||
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</cnsl-card>
|
</cnsl-card>
|
||||||
|
@ -28,7 +28,7 @@ interface WellKnown {
|
|||||||
})
|
})
|
||||||
export class EnvironmentService {
|
export class EnvironmentService {
|
||||||
private environmentJsonPath = './assets/environment.json';
|
private environmentJsonPath = './assets/environment.json';
|
||||||
private wellknownPath = '/.well-known/openid-configuration`';
|
private wellknownPath = '/.well-known/openid-configuration';
|
||||||
public auth!: AuthServiceClient;
|
public auth!: AuthServiceClient;
|
||||||
public mgmt!: ManagementServiceClient;
|
public mgmt!: ManagementServiceClient;
|
||||||
public admin!: AdminServiceClient;
|
public admin!: AdminServiceClient;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user