Skip to content

Commit

Permalink
235: Ensure column text constraints throughout
Browse files Browse the repository at this point in the history
  • Loading branch information
marklise committed Nov 7, 2024
1 parent 7131708 commit a7b7fdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions epictrack-api/src/api/reports/resource_forecast_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ def __init__(self, filters, color_intensity):
self.month_labels = []
self.report_cells = {
"[PROJECT BACKGROUND]": [
{"data_key": "work_title", "label": "WORK TITLE", "width": 0.050},
{"data_key": "work_title", "label": "WORK TITLE", "width": 0.055},
{
"data_key": "capital_investment",
"label": "EST. CAP. INVESTMENT",
"width": 0.071,
"width": 0.069,
},
{
"data_key": "fte_positions_construction",
Expand All @@ -103,13 +103,13 @@ def __init__(self, filters, color_intensity):
"width": 0.057,
},
{"data_key": "ea_act", "label": "EA ACT", "width": 0.03},
{"data_key": "iaac", "label": "IAAC", "width": 0.0355},
{"data_key": "iaac", "label": "IAAC", "width": 0.0395},
{"data_key": "sector(sub)", "label": "TYPE (SUB)", "width": 0.038},
{"data_key": "env_region", "label": "MOE REGION", "width": 0.041},
{"data_key": "nrs_region", "label": "NRS REGION", "width": 0.041},
],
"[EAO RESOURCING]": [
{"data_key": "responsible_epd", "label": "EPD LEAD", "width": 0.037},
{"data_key": "responsible_epd", "label": "EPD LEAD", "width": 0.040},
{"data_key": "cairt_lead", "label": "FN CAIRT LEAD", "width": 0.0486},
{"data_key": "eao_team", "label": "TEAM", "width": 0.028},
{"data_key": "work_lead", "label": "PROJECT LEAD", "width": 0.045},
Expand All @@ -124,7 +124,7 @@ def __init__(self, filters, color_intensity):
{
"data_key": "referral_timing",
"label": "Expected Referral Date",
"width": 0.0725,
"width": 0.0705,
}
],
}
Expand Down

0 comments on commit a7b7fdc

Please sign in to comment.