mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
add assignee id check on the frontend
This commit is contained in:
parent
128ec9ef60
commit
22eeb882a7
@ -179,7 +179,7 @@ export const CreatedUpcomingIssueListItem: React.FC<IssueListItemProps> = observ
|
||||
: "-"}
|
||||
</div>
|
||||
<div className="text-xs flex justify-center">
|
||||
{issue.assignee_ids.length > 0 ? (
|
||||
{issue.assignee_ids && issue.assignee_ids?.length > 0 ? (
|
||||
<AvatarGroup>
|
||||
{issue.assignee_ids?.map((assigneeId) => {
|
||||
const userDetails = getUserDetails(assigneeId);
|
||||
|
Loading…
Reference in New Issue
Block a user