1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-08-10 07:55:27 +02:00

fix: hide the indicator for more remaining members when there are zero

This commit is contained in:
James Dominguez 2024-03-19 14:27:25 -07:00
parent 41a2577696
commit a36c248a3b

View file

@ -68,7 +68,7 @@ const Memberships = React.memo(
</span>
))}
</span>
{remainingUsers && (
{remainingUsers.length > 0 && (
<span className={styles.moreUsersIndicator}>+ {remainingUsers.length} other Members</span>
)}
{canEdit && (