We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f8acd commit 600a483Copy full SHA for 600a483
SharedProject/Core/ReportGenerator/ReportGeneratorUtil.cs
@@ -825,8 +825,11 @@ private string HackGroupingToAllowAll(int groupingLevel)
825
{
826
return $@"
827
var customizeBox = document.getElementsByClassName('customizebox')[0];
828
- var groupingInput = customizeBox.querySelector('input');
829
- groupingInput.max = {groupingLevel};
+ if(customizeBox){{
+ var groupingInput = customizeBox.querySelector('input');
830
+ groupingInput.max = {groupingLevel};
831
+ }}
832
+
833
";
834
835
}
0 commit comments