0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-06 20:49:12 +02:00

Merge branch 'main' into lunny/rename_board_column

This commit is contained in:
Lunny Xiao 2024-03-30 20:04:31 +08:00
commit ecdc683cc1

View file

@ -207,7 +207,7 @@ function attachDomEvents(dropdown, focusable, menu) {
if (!$item) $item = $(menu).find('> .item.selected'); // when dropdown filters items by input, there is no "value", so query the "selected" item
// if the selected item is clickable, then trigger the click event.
// we can not click any item without check, because Fomantic code might also handle the Enter event. that would result in double click.
if ($item && ($item[0].matches('a') || $item.hasClass('js-aria-clickable'))) $item[0].click();
if ($item?.[0]?.matches('a, .js-aria-clickable')) $item[0].click();
}
});