mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Set reprompt to None if null (#422)
This commit is contained in:
parent
aff5ad1faa
commit
d10d40697c
@ -53,7 +53,8 @@ export class CipherView implements View {
|
||||
this.collectionIds = c.collectionIds;
|
||||
this.revisionDate = c.revisionDate;
|
||||
this.deletedDate = c.deletedDate;
|
||||
this.reprompt = c.reprompt;
|
||||
// Old locally stored ciphers might have reprompt == null. If so set it to None.
|
||||
this.reprompt = c.reprompt ?? CipherRepromptType.None;
|
||||
}
|
||||
|
||||
get subTitle(): string {
|
||||
|
Loading…
Reference in New Issue
Block a user