I have fixed this for me with a Tampermonkey script.
Until it is fixed, you can use this.
Until it is fixed, you can use this.
(function()
{
'use strict';
GM_addStyle(`
.tabulator .tabulator-tableholder
{
max-height: 2000px !important;
height: auto !important;
overflow-y: auto !important;
}
.tabulator
{
max-height: 2000px !important;
height: auto !important;
}
.bootgrid-table-container,
.bootgrid-body
{
max-height: 2000px !important;
height: auto !important;
overflow-y: auto !important;
}
.tab-content.content-box
{
max-height: none !important;
overflow: visible !important;
}
`);
})();
"