Add reprompt help link (#963)

This commit is contained in:
Oscar Hinton 2021-06-21 20:56:37 +02:00 committed by GitHub
parent e0d1923237
commit 9c4ea9b491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -250,7 +250,11 @@
<input id="favorite" type="checkbox" name="Favorite" [(ngModel)]="cipher.favorite">
</div>
<div class="box-content-row box-content-row-checkbox" appBoxRow>
<label for="passwordPrompt">{{'passwordPrompt' | i18n}}</label>
<label for="passwordPrompt">{{'passwordPrompt' | i18n}}
<a href="#" appA11yTitle="{{'learnMore' | i18n}}" (click)="openHelpReprompt()">
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
</a>
</label>
<input id="passwordPrompt" type="checkbox" name="PasswordPrompt" [ngModel]="reprompt"
(change)="repromptChanged()">
</div>

View File

@ -94,4 +94,8 @@ export class AddEditComponent extends BaseAddEditComponent implements OnChanges,
markPasswordAsDirty() {
this.form.controls['Login.Password'].markAsDirty();
}
openHelpReprompt() {
this.platformUtilsService.launchUri('https://bitwarden.com/help/article/managing-items/#protect-individual-items');
}
}