Skip to content

Commit

Permalink
PROD-2219-FE-add-system-names-to-new-data-map-reporting (#5045)
Browse files Browse the repository at this point in the history
Co-authored-by: Lucano Vera <[email protected]>
  • Loading branch information
lucanovera and Lucano Vera authored Jul 2, 2024
1 parent d4f5f8a commit 31bda34
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The types of changes are:
- Replaces typescript-cookie with js-cookie [#5022](https://github.com/ethyca/fides/pull/5022)
- Updated pymongo version to 4.7.3 [#5019](https://github.com/ethyca/fides/pull/5019)
- Upgraded Datamap instance of `react-table` to v8 [#5024](https://github.com/ethyca/fides/pull/5024)
- Update name of Ingress/Egress columns in Datamap Report to Sources/Destinations [#5045](https://github.com/ethyca/fides/pull/5045)

### Fixed
- Fixed intermittent connection issues with Redshift by increasing timeout and preferring SSL in test connections [#4981](https://github.com/ethyca/fides/pull/4981)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ enum COLUMN_IDS {
DESCRIPTION = "description",
DOES_INTERNATIONAL_TRANSFERS = "does_international_transfers",
DPA_LOCATION = "dpa_location",
EGRESS = "egress",
DESTINATIONS = "egress",
EXEMPT_FROM_PRIVACY_REGULATIONS = "exempt_from_privacy_regulations",
FEATURES = "features",
FIDES_KEY = "fides_key",
FLEXIBLE_LEGAL_BASIS_FOR_PROCESSING = "flexible_legal_basis_for_processing",
IMPACT_ASSESSMENT_LOCATION = "impact_assessment_location",
INGRESS = "ingress",
SOURCES = "ingress",
JOINT_CONTROLLER_INFO = "joint_controller_info",
LEGAL_BASIS_FOR_PROFILING = "legal_basis_for_profiling",
LEGAL_BASIS_FOR_TRANSFERS = "legal_basis_for_transfers",
Expand Down Expand Up @@ -594,17 +594,19 @@ export const DatamapReportTable = () => {
},
}),
columnHelper.accessor((row) => row.egress, {
id: COLUMN_IDS.EGRESS,
id: COLUMN_IDS.DESTINATIONS,
cell: (props) => (
<GroupCountBadgeCell
suffix="egress"
suffix="destinations"
value={props.getValue()}
{...props}
/>
),
header: (props) => <DefaultHeaderCell value="Egress" {...props} />,
header: (props) => (
<DefaultHeaderCell value="Destinations" {...props} />
),
meta: {
displayText: "Egress",
displayText: "Destinations",
showHeaderMenu: true,
},
}),
Expand Down Expand Up @@ -668,17 +670,17 @@ export const DatamapReportTable = () => {
},
}),
columnHelper.accessor((row) => row.ingress, {
id: COLUMN_IDS.INGRESS,
id: COLUMN_IDS.SOURCES,
cell: (props) => (
<GroupCountBadgeCell
suffix="ingress"
suffix="sources"
value={props.getValue()}
{...props}
/>
),
header: (props) => <DefaultHeaderCell value="Ingress" {...props} />,
header: (props) => <DefaultHeaderCell value="Sources" {...props} />,
meta: {
displayText: "Ingress",
displayText: "Sources",
showHeaderMenu: true,
},
}),
Expand Down

0 comments on commit 31bda34

Please sign in to comment.