Merge branch 'mikaoelitiana-fix-4220'
commit
6b43d7f4f3
|
@ -26,6 +26,7 @@ answer newbie questions, and generally made Taiga that much better:
|
|||
- Guilhem Got <guilhem.got@gmail.com>
|
||||
- Jordan Rinke
|
||||
- Miguel de la Cruz <miguel.delacruz@kaleidos.net>
|
||||
- Mika Andrianarijaona <mikaoelitiana@gmail.com>
|
||||
- Pilar Esteban <pilar.esteban@gmail.com>
|
||||
- Ramiro Sánchez <ramiro.sanzhez@kaleidos.net>
|
||||
- Ryan Swanstrom
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
- Errors (not found, server error, permissions and blocked project) don't change the current url.
|
||||
- Attachments image slider
|
||||
- New admin area to edit the tag colors used in your project
|
||||
- Display the current user (me) at first in assignment lightbox (thanks to [@mikaoelitiana](https://github.com/mikaoelitiana))
|
||||
|
||||
### Misc
|
||||
- Lots of small and not so small bugfixes.
|
||||
|
|
|
@ -527,6 +527,7 @@ AssignedToLightboxDirective = (lightboxService, lightboxKeyboardNavigationServic
|
|||
render = (selected, text) ->
|
||||
users = _.clone($scope.activeUsers, true)
|
||||
users = _.reject(users, {"id": selected.id}) if selected?
|
||||
users = _.sortBy(users, (o) -> if o.id is $scope.user.id then 0 else o.id)
|
||||
users = _.filter(users, _.partial(filterUsers, text)) if text?
|
||||
|
||||
ctx = {
|
||||
|
|
Loading…
Reference in New Issue