Skip to content

Commit

Permalink
Merge pull request #881 from bcgov/feat/hamed-fix-fuel-code-form-861
Browse files Browse the repository at this point in the history
Fix: Resolve Fuel Code Form Display Issues - 861
  • Loading branch information
AlexZorkin authored Sep 4, 2024
2 parents c8801fd + 503b1e4 commit c2149f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/lcfs/web/api/fuel_code/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ class FieldOptions(BaseSchema):


class FPLocationsSchema(BaseSchema):
fuel_production_facility_city: str
fuel_production_facility_province_state: str
fuel_production_facility_country: str
fuel_production_facility_city: Optional[str] = None
fuel_production_facility_province_state: Optional[str] = None
fuel_production_facility_country: Optional[str] = None


class TableOptionsSchema(BaseSchema):
Expand Down

0 comments on commit c2149f4

Please sign in to comment.