Skip to content

Commit

Permalink
Merge pull request #4450 from cisagov/category-fix
Browse files Browse the repository at this point in the history
Fix to standard results display
  • Loading branch information
Marcus-Goectau authored Feb 19, 2025
2 parents 55852bd + 3e022bc commit 3e50424
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ orderby an.Question_Group_Heading

var sets = (from usp_getStandardsResultsByCategory an in result
select new { an.Set_Name, an.Short_Name }).Distinct();

foreach (var set in sets)
{
ChartData nextChartData = new ChartData();
Expand Down Expand Up @@ -141,8 +142,11 @@ orderby rs.Requirement_Sequence
var r = result.Where(x => x.Question_Group_Heading == item).FirstOrDefault();
var l = labels.Where(x => x.Question_Group_Heading == item).FirstOrDefault();

newResult.Add(r);
newLabels.Add(l);
if (r != null || l != null)
{
newResult.Add(r);
newLabels.Add(l);
}
}
}

Expand Down

0 comments on commit 3e50424

Please sign in to comment.