diff options
Diffstat (limited to 'src/state/models')
-rw-r--r-- | src/state/models/profile-view.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/models/profile-view.ts b/src/state/models/profile-view.ts index a2919e2e7..62a17a6fd 100644 --- a/src/state/models/profile-view.ts +++ b/src/state/models/profile-view.ts @@ -27,6 +27,7 @@ export class ProfileViewModel { did: string = '' handle: string = '' actorType = ACTOR_TYPE_USER + creator: string = '' displayName?: string description?: string followersCount: number = 0 @@ -145,6 +146,7 @@ export class ProfileViewModel { this.did = res.data.did this.handle = res.data.handle this.actorType = res.data.actorType + this.creator = res.data.creator this.displayName = res.data.displayName this.description = res.data.description this.followersCount = res.data.followersCount |