1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

Use a modal to set the unlock pin (#1064)

* Use separate modal to set pin

* Remove incorrect label

* Fix tab focus for settings and set-pin modals

* Remove leftover code

* Update jslib
This commit is contained in:
Thomas Rittson
2021-09-13 10:52:58 +10:00
committed by GitHub
parent cdac1a4508
commit ebaf27b7c9
8 changed files with 76 additions and 51 deletions

View File

@@ -0,0 +1,8 @@
import { Component } from '@angular/core';
import { SetPinComponent as BaseSetPinComponent } from 'jslib-angular/components/set-pin.component';
@Component({
templateUrl: 'set-pin.component.html',
})
export class SetPinComponent extends BaseSetPinComponent { }