Skip to content

Commit

Permalink
Merge pull request #379 from bcgov/feature/EDX-1429
Browse files Browse the repository at this point in the history
fix: section & row titles for ELL summary
  • Loading branch information
mightycox authored Jan 4, 2024
2 parents 0a29b67 + 7015168 commit 5c6d69c
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,26 +128,26 @@ private Map<String, Function<EllHeadcountResult, String>> getHeadcountMethods()
private Map<String, String> getSelectionTitles() {
Map<String, String> sectionTitles = Map.of(
SCHOOL_AGED_TOTALS, SCHOOL_AGED_TITLE,
SCHOOL_AGED_1_5, ONE_TO_FIVE_TITLE,
SCHOOL_AGED_6_PLUS, SIX_PLUS_TITLE,
SCHOOL_AGED_1_5, SCHOOL_AGED_TITLE,
SCHOOL_AGED_6_PLUS, SCHOOL_AGED_TITLE,
ADULT_TOTALS, ADULT_TITLE,
ADULT_1_5, ADULT_1_5,
ADULT_6_PLUS, ADULT_6_PLUS,
ADULT_1_5, ADULT_TITLE,
ADULT_6_PLUS, ADULT_TITLE,
TOTAL_ELL_STUDENTS, ALL_STUDENTS_TITLE,
ALL_1_5, ONE_TO_FIVE_TITLE,
ALL_6_PLUS, SIX_PLUS_TITLE);
ALL_1_5, ALL_STUDENTS_TITLE,
ALL_6_PLUS, ALL_STUDENTS_TITLE);

return sectionTitles;
}

private Map<String, String> getRowTitles() {
Map<String, String> rowTitles = Map.of(
SCHOOL_AGED_TOTALS, SCHOOL_AGED_TITLE,
SCHOOL_AGED_TOTALS, TOTAL_GRADE_TITLE,
SCHOOL_AGED_1_5, ONE_TO_FIVE_TITLE,
SCHOOL_AGED_6_PLUS, SIX_PLUS_TITLE,
ADULT_TOTALS, ADULT_TITLE,
ADULT_1_5, ADULT_1_5,
ADULT_6_PLUS, ADULT_6_PLUS,
ADULT_1_5, ONE_TO_FIVE_TITLE,
ADULT_6_PLUS, SIX_PLUS_TITLE,
TOTAL_ELL_STUDENTS, ALL_STUDENTS_TITLE,
ALL_1_5, ONE_TO_FIVE_TITLE,
ALL_6_PLUS, SIX_PLUS_TITLE);
Expand Down

0 comments on commit 5c6d69c

Please sign in to comment.