fix #4584 - hide filter warning with less than 5 users in assign to

stable
Juanfran 2016-10-03 10:50:19 +02:00
parent dc31a883d0
commit 557c079c11
1 changed files with 1 additions and 1 deletions

View File

@ -601,7 +601,7 @@ AssignedToLightboxDirective = (lightboxService, lightboxKeyboardNavigationServic
ctx = {
selected: selected
users: _.slice(users, 0, 5)
showMore: visibleUsers
showMore: users.length > 5
}
html = usersTemplate(ctx)