Skip to content

Commit

Permalink
Update zero-state default values (#4260)
Browse files Browse the repository at this point in the history
Previously, `None` was being passed. This would actually type out `"None"` on the input fields when adding a new SAC access. This change keeps the blank fields.
  • Loading branch information
rnovak338 committed Sep 10, 2024
1 parent fc30712 commit 5b73f02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/audit/views/manage_submission_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ def get_user_role_management_context(self, sac):
"friendly_role": None,
"auditee_uei": sac.general_information["auditee_uei"],
"auditee_name": sac.general_information.get("auditee_name"),
"certifier_name": None,
"email": None,
"certifier_name": "",
"email": "",
"report_id": sac.report_id,
"errors": [],
}
Expand Down

0 comments on commit 5b73f02

Please sign in to comment.