Skip to content

Commit

Permalink
pkp/pkp-lib#10651 Rename initials property
Browse files Browse the repository at this point in the history
  • Loading branch information
taslangraham committed Dec 23, 2024
1 parent 402f21e commit 62cddfc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/managers/ParticipantManager/ParticipantManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div>
<UserAvatar
:user-id="participant.id"
:initials="participant.initials"
:initials="participant.displayInitials"
></UserAvatar>
</div>
<div class="ms-2 flex flex-col justify-center">
Expand Down
2 changes: 1 addition & 1 deletion src/managers/ParticipantManager/participantManagerStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const useParticipantManagerStore = defineComponentStore(
roleId: stageAssignment.stageAssignmentUserGroup.roleId,
userGroupId: stageAssignment.stageAssignmentUserGroup.id,
recommendOnly: stageAssignment.recommendOnly,
initials: participant.initials,
displayInitials: participant.displayInitials,
});
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<UserAvatar
size-variant="small"
:user-id="reviewAssignment.id"
:initials="String(reviewAssignment.reviewerInitials)"
:initials="String(reviewAssignment.reviewerDisplayInitials)"
/>
</template>
<ReviewActivityIndicatorPopover
Expand Down

0 comments on commit 62cddfc

Please sign in to comment.