Skip to content

Commit

Permalink
PROD-2626 Privacy-Request-screen-crashes-when-daysLeft-null (#5213)
Browse files Browse the repository at this point in the history
Co-authored-by: Lucano Vera <lucanovera@ethyca.com>
  • Loading branch information
lucanovera and Lucano Vera authored Aug 20, 2024
1 parent 4abdffd commit 3b9029f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ The types of changes are:

### Fixed
- Ignore `404` errors on Oracle Responsys deletions [#5203](https://github.com/ethyca/fides/pull/5203)
- Fix white screen issue when privacy request has null value for daysLeft [#5213](https://github.com/ethyca/fides/pull/5213)


## [2.43.0](https://github.com/ethyca/fides/compare/2.42.1...2.43.0)

Expand Down
1 change: 1 addition & 0 deletions clients/admin-ui/src/features/privacy-requests/cells.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export const RequestDaysLeftCell = ({
}) => {
if (
daysLeft === undefined ||
daysLeft === null ||
status === PrivacyRequestStatus.COMPLETE ||
status === PrivacyRequestStatus.CANCELED ||
status === PrivacyRequestStatus.DENIED ||
Expand Down

0 comments on commit 3b9029f

Please sign in to comment.