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:
parent
41a2577696
commit
a36c248a3b
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ const Memberships = React.memo(
|
|||
</span>
|
||||
))}
|
||||
</span>
|
||||
{remainingUsers && (
|
||||
{remainingUsers.length > 0 && (
|
||||
<span className={styles.moreUsersIndicator}>+ {remainingUsers.length} other Members</span>
|
||||
)}
|
||||
{canEdit && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue