Skip to content

Commit

Permalink
fix typo in bigquery monitor copy (#5120)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilluminate authored Jul 22, 2024
1 parent 8312146 commit ce8b1b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ The types of changes are:
### Developer Experience
- Add `.syncignore` to reduce file sync size with new volumes [#5104](https://github.com/ethyca/fides/pull/5104)

### Fixed
- Fixed typo in the BigQuery integration description [#5120](https://github.com/ethyca/fides/pull/5120)

## [2.41.0](https://github.com/ethyca/fides/compare/2.40.0...2.41.0)

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const BigQueryOverview = () => (
<ListItem>bigquery.tables.getData</ListItem>
<ListItem>bigquery.tables.list</ListItem>
<ListItem>bigquery.tables.updateData</ListItem>
<ListItem>bigquery.projects.get</ListItem>
<ListItem>resourcemanager.projects.get</ListItem>
</InfoUnorderedList>
</ShowMoreContent>
</>
Expand Down Expand Up @@ -144,7 +144,7 @@ const MONITORED_PROJECT_PERMISSIONS = [
description: "List all tables in the specified dataset.",
},
{
permission: "bigquery.projects.get",
permission: "resourcemanager.projects.get",
description: "Retrieve metadata for the specified project.",
},
];
Expand Down

0 comments on commit ce8b1b0

Please sign in to comment.