Skip to content

Commit

Permalink
Fix start index of privacy declarations (#1649)
Browse files Browse the repository at this point in the history
* Fix start index of privacy declarations

* [skip ci] Update changelog
  • Loading branch information
allisonking authored and SteveDMurphy committed Nov 1, 2022
1 parent 5657039 commit 9084f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The types of changes are:
### Fixed

* Include systems without a privacy declaration on data map [#1603](https://github.com/ethyca/fides/pull/1603)
* Fixed system dependencies appearing as "N/A" in the datamap endpoint when there are no privacy declarations [#1649](https://github.com/ethyca/fides/pull/1649)

## [1.9.5](https://github.com/ethyca/fides/compare/1.9.4...1.9.5)

Expand Down
2 changes: 1 addition & 1 deletion src/fidesctl/ctl/core/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def generate_system_records(
data_protection_impact_assessment["link"],
]
num_privacy_declaration_fields = 12
privacy_declaration_start_index = 6
privacy_declaration_start_index = 7
for i in range(num_privacy_declaration_fields):
system_row.insert(
i + privacy_declaration_start_index, EMPTY_COLUMN_PLACEHOLDER
Expand Down

0 comments on commit 9084f34

Please sign in to comment.