diff --git a/src/main/webapp/app/shared/model/membership.model.ts b/src/main/webapp/app/shared/model/membership.model.ts index 7d520a2f..0e9c9680 100644 --- a/src/main/webapp/app/shared/model/membership.model.ts +++ b/src/main/webapp/app/shared/model/membership.model.ts @@ -13,7 +13,7 @@ export interface IMembership { assets?: IAsset[]; customerPrefix?: string; customerId?: number; - membershipDisplayLabel?: string; + customerDisplayLabel?: string; displayLabel?: string; } @@ -29,7 +29,7 @@ export class Membership implements IMembership { public assets?: IAsset[], public customerPrefix?: string, public customerId?: number, - public displayLabel?: string, - public membershipDisplayLabel?: string + public customerDisplayLabel?: string, + public displayLabel?: string ) {} }