mirror of
https://github.com/go-gitea/gitea
synced 2025-07-06 02:27:20 +00:00
Allow filtering issues by any assignee (#33343)
This is the opposite of the "No assignee" filter, it will match all issues that have at least one assignee. Before  After  --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
@ -1130,7 +1130,11 @@ $.fn.dropdown = function(parameters) {
|
||||
icon: {
|
||||
click: function(event) {
|
||||
iconClicked=true;
|
||||
if(module.has.search()) {
|
||||
// GITEA-PATCH: official dropdown doesn't support the search input in menu
|
||||
// so we need to make the menu could be shown when the search input is in menu and user clicks the icon
|
||||
const searchInputInMenu = Boolean($menu.find('.search > input').length);
|
||||
if(module.has.search() && !searchInputInMenu) {
|
||||
// the search input is in the dropdown element (but not in the popup menu), try to focus it
|
||||
if(!module.is.active()) {
|
||||
if(settings.showOnFocus){
|
||||
module.focusSearch();
|
||||
|
Reference in New Issue
Block a user