1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 11:33:28 +00:00

warn user and reseed storage if using Never lock option

This commit is contained in:
Kyle Spearrin
2018-10-03 22:46:11 -04:00
parent ba67561c9e
commit d16d1d1308
4 changed files with 32 additions and 13 deletions

View File

@@ -26,7 +26,8 @@
<div class="box-content single-line">
<div class="box-content-row display-block" appBoxRow>
<label for="lockOption">{{'lockOptions' | i18n}}</label>
<select id="lockOption" name="LockOptions" [(ngModel)]="lockOption" (change)="saveLockOption()">
<select #lockOptionsSelect id="lockOption" name="LockOptions" [ngModel]="lockOption"
(ngModelChange)="saveLockOption($event)">
<option *ngFor="let o of lockOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
</div>