* my: bug #47024, fix cannot scroll in table of page "my-bug".
This commit is contained in:
@@ -41,5 +41,5 @@ window.setStatistics = function(element, checks)
|
||||
{
|
||||
if(checks.length) return checkedSummary.replace('{checked}', checks.length);
|
||||
|
||||
return element.options.customData.pageSummary;
|
||||
return element.options.customData ? element.options.customData.pageSummary : null;
|
||||
}
|
||||
|
||||
@@ -106,7 +106,7 @@ dtable
|
||||
set::footToolbar($footToolbar),
|
||||
set::footPager(usePager()),
|
||||
set::emptyTip($lang->bug->notice->noBug),
|
||||
set::customData($type == 'resolvedBy' ? array('pageSummary' => $summary) : null)
|
||||
set::customData($type == 'resolvedBy' ? array('pageSummary' => $summary) : array())
|
||||
);
|
||||
|
||||
render();
|
||||
|
||||
Reference in New Issue
Block a user