diff --git a/CHANGELOG.md b/CHANGELOG.md index 48741486dd..59aee49854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx b/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx index 6bee487a33..8d66a75398 100644 --- a/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx +++ b/clients/admin-ui/src/features/integrations/integration-type-info/bigqueryInfo.tsx @@ -97,7 +97,7 @@ export const BigQueryOverview = () => ( bigquery.tables.getData bigquery.tables.list bigquery.tables.updateData - bigquery.projects.get + resourcemanager.projects.get @@ -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.", }, ];