1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

Replace logoType by logoPath in BreachAccountResponse (#23)

This commit is contained in:
Alexandre Lapeyre
2018-11-28 15:51:02 +01:00
committed by Kyle Spearrin
parent 739d308498
commit 2a960da31c

View File

@@ -6,7 +6,7 @@ export class BreachAccountResponse {
domain: string;
isActive: boolean;
isVerified: boolean;
logoType: string;
logoPath: string;
modifiedDate: string;
name: string;
pwnCount: number;
@@ -20,7 +20,7 @@ export class BreachAccountResponse {
this.domain = response.Domain;
this.isActive = response.IsActive;
this.isVerified = response.IsVerified;
this.logoType = response.LogoType;
this.logoPath = response.LogoPath;
this.modifiedDate = response.ModifiedDate;
this.name = response.Name;
this.pwnCount = response.PwnCount;