Skip to content

Commit

Permalink
Custom Report - Allow InstanceIDs param to be mapped
Browse files Browse the repository at this point in the history
Custom report drill down - allow InstanceIDs param to be mapped.
  • Loading branch information
DavidWiseman committed Sep 20, 2024
1 parent c9eb0f7 commit f297887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DBADashGUI/CustomReports/LinkColumnTypeSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private void LoadReportParams()
}

if (report?.UserParams == null) return;
foreach (var p in report.Params.ParamList.Where(p => !string.Equals(p.ParamName, "@InstanceIDs", StringComparison.InvariantCultureIgnoreCase)))
foreach (var p in report.Params.ParamList)
{
bool isSystem = CustomReport.SystemParamNames.Contains(p.ParamName, StringComparer.OrdinalIgnoreCase);
var row = new DataGridViewRow();
Expand Down

0 comments on commit f297887

Please sign in to comment.