Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix to standard results display #4450

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading