diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 13:12:03 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-09 13:12:03 -0600 |
commit | 41a18bf32fb4862681804150ba1a5fe2517b9d90 (patch) | |
tree | 7dd5c83ed162d138b2b09233d0bcc43bba0c9214 /src/state/models/profile-view.ts | |
parent | 0cdfd089f542526276781264045d13f12657d431 (diff) | |
download | voidsky-41a18bf32fb4862681804150ba1a5fe2517b9d90.tar.zst |
Add creator to scene profile header
Diffstat (limited to 'src/state/models/profile-view.ts')
-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 |