1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02: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; 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;