-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PM-11407] add upated copy to managed accounts (#11768)
* add upated copy to managed accounts * Add link URL * Update link * change copy in danger zone component * Refactor to look at content projection children
- Loading branch information
Showing
5 changed files
with
63 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 8 additions & 2 deletions
10
apps/web/src/app/auth/settings/account/danger-zone.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
<h1 bitTypography="h1" class="tw-mt-16 tw-pb-2.5 !tw-text-danger">{{ "dangerZone" | i18n }}</h1> | ||
|
||
<div class="tw-rounded tw-border tw-border-solid tw-border-danger-600 tw-p-5"> | ||
<p>{{ "dangerZoneDesc" | i18n }}</p> | ||
<p> | ||
{{ | ||
(accountDeprovisioningEnabled$ | async) && content.children.length === 1 | ||
? ("dangerZoneDescSingular" | i18n) | ||
: ("dangerZoneDesc" | i18n) | ||
}} | ||
</p> | ||
|
||
<div class="tw-flex tw-flex-row tw-gap-2"> | ||
<div #content class="tw-flex tw-flex-row tw-gap-2"> | ||
<ng-content></ng-content> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters