mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-17 03:31:30 +00:00

* idp cleanup * lint * jwtidp service, create, detail, assets * idp detail, info row * detail actions * delete idp, fix state change * lint * cli core * cdk material * chore(deps-dev): bump karma-jasmine-html-reporter in /console (#2446) Bumps [karma-jasmine-html-reporter](https://github.com/dfederm/karma-jasmine-html-reporter) from 1.6.0 to 1.7.0. - [Release notes](https://github.com/dfederm/karma-jasmine-html-reporter/releases) - [Commits](https://github.com/dfederm/karma-jasmine-html-reporter/compare/v1.6.0...v1.7.0) --- updated-dependencies: - dependency-name: karma-jasmine-html-reporter dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update deps * lock * disable actions, user grant link to user, add granted org desc * lint Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
821 B
HTML
23 lines
821 B
HTML
<div [ngClass]="{'max-width-container': maxWidth, 'enlarged-container': !maxWidth}">
|
|
<div class="detail-container">
|
|
<div class="detail-left">
|
|
<a *ngIf="backRouterLink" [routerLink]="backRouterLink" mat-icon-button>
|
|
<mat-icon class="icon">arrow_back</mat-icon>
|
|
</a>
|
|
</div>
|
|
<div class="detail-right">
|
|
<div class="head">
|
|
<div class="top-view">
|
|
<div>
|
|
<h1>{{ title }}</h1>
|
|
<p class="head-desc">{{ description }}</p>
|
|
</div>
|
|
<div class="actions-wrap">
|
|
<ng-content select="[actions]"></ng-content>
|
|
</div>
|
|
</div>
|
|
<ng-content></ng-content>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |