Skip to content

Commit

Permalink
Expand motion detail subscription
Browse files Browse the repository at this point in the history
  • Loading branch information
luisa-beerboom committed Mar 5, 2024
1 parent f2ef564 commit 1756a2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,10 +224,10 @@ export const getMotionDetailSubscriptionConfig: SubscriptionConfigGenerator = (.
follow: [
{
idField: `user_id`,
fieldset: [...UserFieldsets.FullNameSubscription.fieldset, `meeting_user_ids`]
fieldset: `participantList`
}
],
...MeetingUserFieldsets.FullNameSubscription
fieldset: `participantListMinimal`
}
],
fieldset: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ export class MotionMetaDataComponent extends BaseMotionDetailChildComponent impl
return origin?.canAccess();
}

protected override onAfterSetMotion(_previous: ViewMotion, _current: ViewMotion): void {
super.onAfterSetMotion(_previous, _current);
protected override onAfterSetMotion(previous: ViewMotion, current: ViewMotion): void {
super.onAfterSetMotion(previous, current);
this.updateSupportersSubject();
}

Expand Down

0 comments on commit 1756a2c

Please sign in to comment.