yes your solution of displaying author when assignee is already filtered.
I don't know ruby at all, but I guess I can try, as you're the one who made the change to put assignee instead of author, I would not be against some guidance on where to look for the modification :)
thank you, I'm a bit confused by the code (the fact I know nothing about ruby, let alone rails, without talking about haml may be part of it)
in my naive understanding, in order to implement the feature as you said, it would require from the controller to send to the view a variable "isFilteredByAssignee"
How can one find the corresponding controller, I've tried grepping for _merge_request.html.haml or just _merge_request without finding anything.
I guess the index.html.haml in the folder do something magic to render the list of merge_request with the @merge_requests ?
I just discussed this with some other team-members. The consensus is that changing what information is displayed is confusing. We don't have a lot of space to work but but we can add 'by' and an avatar. So go from:
#337 assigned to Sytse Sijbrandij
=>
#337 by AVATAR assigned to AVATAR Sytse Sijbrandij
When you hover over the avatar it should show the name of the author in a tooltip.
I don't know ruby at all, but I guess I can try, as you're the one who made the change to put assignee instead of author, I would not be against some guidance on where to look for the modification :)