mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
Add reprompt help link (#963)
This commit is contained in:
parent
e0d1923237
commit
9c4ea9b491
@ -250,7 +250,11 @@
|
|||||||
<input id="favorite" type="checkbox" name="Favorite" [(ngModel)]="cipher.favorite">
|
<input id="favorite" type="checkbox" name="Favorite" [(ngModel)]="cipher.favorite">
|
||||||
</div>
|
</div>
|
||||||
<div class="box-content-row box-content-row-checkbox" appBoxRow>
|
<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"
|
<input id="passwordPrompt" type="checkbox" name="PasswordPrompt" [ngModel]="reprompt"
|
||||||
(change)="repromptChanged()">
|
(change)="repromptChanged()">
|
||||||
</div>
|
</div>
|
||||||
|
@ -94,4 +94,8 @@ export class AddEditComponent extends BaseAddEditComponent implements OnChanges,
|
|||||||
markPasswordAsDirty() {
|
markPasswordAsDirty() {
|
||||||
this.form.controls['Login.Password'].markAsDirty();
|
this.form.controls['Login.Password'].markAsDirty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openHelpReprompt() {
|
||||||
|
this.platformUtilsService.launchUri('https://bitwarden.com/help/article/managing-items/#protect-individual-items');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user