1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-04 10:43:47 +00:00

bitLink for styling

This commit is contained in:
Alex
2025-09-11 12:40:04 -04:00
parent da534434bb
commit 78b7d85e52
2 changed files with 11 additions and 4 deletions

View File

@@ -19,10 +19,11 @@
<p bitTypography="body2" class="tw-text-muted tw-leading-relaxed">
{{ "riskInsightsInitPromptStep1Description" | i18n }}
<a
bitLink
linkType="primary"
href="https://bitwarden.com/help/policies/#enforce-organization-data-ownership"
target="_blank"
rel="noopener noreferrer"
class="tw-text-primary-600 tw-underline hover:tw-text-primary-700 tw-cursor-pointer"
rel="noreferrer"
>{{ "riskInsightsInitPromptEnforceDataOwnershipPolicyLink" | i18n }}</a
>
{{ "riskInsightsInitPromptStep1DescriptionContinued" | i18n }}

View File

@@ -1,11 +1,17 @@
import { Component } from "@angular/core";
import { ButtonModule, DialogModule, DialogService, TypographyModule } from "@bitwarden/components";
import {
ButtonModule,
DialogModule,
DialogService,
LinkModule,
TypographyModule,
} from "@bitwarden/components";
import { I18nPipe } from "@bitwarden/ui-common";
@Component({
templateUrl: "./first-report-prompt-dialog.component.html",
imports: [ButtonModule, DialogModule, TypographyModule, I18nPipe],
imports: [ButtonModule, DialogModule, LinkModule, TypographyModule, I18nPipe],
})
export class FirstReportPromptDialogComponent {
static open(dialogService: DialogService) {