1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

[PM-15571] Help link on import vault (#12448)

* [PM-15571] BW help Link on import vault page has wrong styling in dark mode

* Remove useless code
This commit is contained in:
albertboyd5 2024-12-18 14:17:50 -06:00 committed by GitHub
parent 6eb30c98c4
commit ef8e8bfcbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -80,7 +80,13 @@
<bit-callout type="info" title="{{ getFormatInstructionTitle() }}" *ngIf="format">
<ng-container *ngIf="format === 'bitwardencsv' || format === 'bitwardenjson'">
See detailed instructions on our help site at
<a target="_blank" rel="noreferrer" href="https://bitwarden.com/help/export-your-data/">
<a
bitLink
linkType="primary"
target="_blank"
rel="noreferrer"
href="https://bitwarden.com/help/export-your-data/"
>
https://bitwarden.com/help/export-your-data/</a
>
</ng-container>

View File

@ -53,6 +53,7 @@ import {
SectionHeaderComponent,
SelectModule,
ToastService,
LinkModule,
} from "@bitwarden/components";
import { KeyService } from "@bitwarden/key-management";
@ -115,6 +116,7 @@ const safeProviders: SafeProvider[] = [
ContainerComponent,
SectionHeaderComponent,
SectionComponent,
LinkModule,
],
providers: safeProviders,
})