From 47151034b05b9a5359c469c69fb4d50e95b18b6d Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Wed, 25 May 2022 11:21:49 +0800 Subject: [PATCH] * Finish task #54996. --- module/bug/js/report.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/js/report.js b/module/bug/js/report.js index 4b60e932d5..cd26d766af 100644 --- a/module/bug/js/report.js +++ b/module/bug/js/report.js @@ -5,7 +5,7 @@ $(function() $('.table-wrapper').each(function() { var $this = $(this); - $this.css('max-height', $this.closest('.table').find('.chart-wrapper').outerHeight()); + $this.css('max-height', $this.closest('.table-row.chart-row').find('.chart-wrapper').outerHeight()); }); }; resizeChartTable();