Skip to content

Commit

Permalink
#3213 Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sambodeme committed Aug 6, 2024
1 parent d7a892c commit 462e243
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion backend/audit/intakelib/intermediate_representation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ def _extract_generic_data(ir, params) -> dict:
result: dict = {}
try:
_extract_generic_meta_and_field_data(ir, params, result)
if result.get("Meta", {}).get(SECTION_NAME) == params.section:
if result.get("Meta", {}).get(SECTION_NAME) in [
params.section,
"FederalAwardsExpended", # This is necessary to maintain compatibility with the old template
]:
_extract_generic_column_data(ir, result, params)
return result

Expand Down

0 comments on commit 462e243

Please sign in to comment.