You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The dropdown menus for "Reports" and "Listings" do not scroll so items may be cut off from display. ie. those below the scroll line are inaccessible
One possible fix for this is to edit the MR.Blade file:
/munkireport-php/resources/views/layouts/mr.blade.php
by adding 'pre-scrollable' to the div class as follows:
Change:
<div class="report dropdown-menu" aria-labelledby="dashboardsMenuLink">
to:
<div class="report dropdown-menu pre-scrollable" aria-labelledby="dashboardsMenuLink">
and,
Change:
<div class="listing dropdown-menu" aria-labelledby="listingMenuLink">
to:
<div class="listing dropdown-menu pre-scrollable" aria-labelledby="listingMenuLink">
To work for custom Dashboards in /local you also have to edit:
/munkireport-php/resources/views/partials/head.php
by adding 'pre-scrollable' to the div class as follows:
Change:
<div class="report dropdown-menu">
To:
<div class="report dropdown-menu pre-scrollable">
and,
Change:
<div class="listing dropdown-menu">
To:
<div class="listing dropdown-menu pre-scrollable">
The text was updated successfully, but these errors were encountered:
Quoting precursorca, in v6:
The text was updated successfully, but these errors were encountered: