-
Problem report
-
Resolution: Duplicate
-
Trivial
-
7.0.3, 7.0.4
-
None
-
S24-W44/45
-
0.5
Steps to reproduce:
- Create several filters on the latest data page or the problems page from the Monitoring menu item.
- You need to create enough filters so that when you click the vertical chevron the vertical list extend beyond the browser window.
- Notice that the vertical scroll in the browser does not allow you to scroll to the bottom of the list.
I think I found the issue in js/menupopup.js. On line 1784 there is this:
$('.wrapper').append($('<div>', {class: 'menu-popup-overlay'}).append($menu_popup));
The second append is inside the first .append.
.append($menu_popup)
This needs to be fixed to this:
$('.wrapper').append($('<div>', {class: 'menu-popup-overlay'})).append($menu_popup);
- part of
-
ZBX-23687 Improve popup menu behavior with many items and submenus
- Fix for Manual Testing