Skip to content

Commit

Permalink
Fix mask and update seed section with correct headings in section 5 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsummers1 committed Nov 25, 2024
1 parent 925d4d1 commit 0fbd482
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions services/database/data/seed-local/seed-section.json
Original file line number Diff line number Diff line change
Expand Up @@ -32056,9 +32056,9 @@
],
"headers": [
{ "contents": "" },
{ "contents": "FFY 2020" },
{ "contents": "FFY 2021" },
{ "contents": "FFY 2022" }
{ "contents": "FFY 2022" },
{ "contents": "FFY 2023" }
]
},
"fieldset_type": "synthesized_table"
Expand Down Expand Up @@ -32188,9 +32188,9 @@
],
"headers": [
{ "contents": "" },
{ "contents": "FFY 2020" },
{ "contents": "FFY 2021" },
{ "contents": "FFY 2022" }
{ "contents": "FFY 2022" },
{ "contents": "FFY 2023" }
]
},
"fieldset_type": "synthesized_table"
Expand Down
2 changes: 1 addition & 1 deletion services/database/scripts/add-less-than-eleven-mask.js
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ async function handler() {
function filter(items, sectionId) {
return items.filter(
(item) =>
item.sectionId === sectionId && (item.year === 2023 || item.year === 2022)
item.sectionId === sectionId && (item.year === 2021 || item.year === 2020)
);
}

Expand Down

0 comments on commit 0fbd482

Please sign in to comment.