mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
Replace logoType by logoPath in BreachAccountResponse (#23)
This commit is contained in:
committed by
Kyle Spearrin
parent
739d308498
commit
2a960da31c
@@ -6,7 +6,7 @@ export class BreachAccountResponse {
|
|||||||
domain: string;
|
domain: string;
|
||||||
isActive: boolean;
|
isActive: boolean;
|
||||||
isVerified: boolean;
|
isVerified: boolean;
|
||||||
logoType: string;
|
logoPath: string;
|
||||||
modifiedDate: string;
|
modifiedDate: string;
|
||||||
name: string;
|
name: string;
|
||||||
pwnCount: number;
|
pwnCount: number;
|
||||||
@@ -20,7 +20,7 @@ export class BreachAccountResponse {
|
|||||||
this.domain = response.Domain;
|
this.domain = response.Domain;
|
||||||
this.isActive = response.IsActive;
|
this.isActive = response.IsActive;
|
||||||
this.isVerified = response.IsVerified;
|
this.isVerified = response.IsVerified;
|
||||||
this.logoType = response.LogoType;
|
this.logoPath = response.LogoPath;
|
||||||
this.modifiedDate = response.ModifiedDate;
|
this.modifiedDate = response.ModifiedDate;
|
||||||
this.name = response.Name;
|
this.name = response.Name;
|
||||||
this.pwnCount = response.PwnCount;
|
this.pwnCount = response.PwnCount;
|
||||||
|
|||||||
Reference in New Issue
Block a user