From ba0b19e45dabadbcc23e58a88049b07e7534c645 Mon Sep 17 00:00:00 2001 From: Jeremy Pople Date: Tue, 30 Jul 2024 21:37:06 -0400 Subject: [PATCH 1/3] location text fix --- .../configure-monitor/ConfigureMonitorDatabasesForm.tsx | 2 +- .../integrations/configure-monitor/MonitorConfigTab.tsx | 2 +- .../integrations/configure-monitor/MonitorDatabasePicker.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx b/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx index b4e6fec5ad..38c7d03aa4 100644 --- a/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx +++ b/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx @@ -62,7 +62,7 @@ const ConfigureMonitorDatabasesForm = ({ <> - Select projects to monitor + Select scope to monitor ), - header: (props) => , + header: (props) => , }), columnHelper.accessor((row) => row.execution_frequency, { id: "frequency", diff --git a/clients/admin-ui/src/features/integrations/configure-monitor/MonitorDatabasePicker.tsx b/clients/admin-ui/src/features/integrations/configure-monitor/MonitorDatabasePicker.tsx index e300210ceb..158f84bd3a 100644 --- a/clients/admin-ui/src/features/integrations/configure-monitor/MonitorDatabasePicker.tsx +++ b/clients/admin-ui/src/features/integrations/configure-monitor/MonitorDatabasePicker.tsx @@ -84,7 +84,7 @@ const MonitorDatabasePicker = ({ columnHelper.accessor((row) => row.id, { id: "id", cell: (props) => , - header: (props) => , + header: (props) => , }), ], [handleToggleSelection, handleToggleAll, allSelected, someSelected] From 82762e13a602d5a1adbe6b9c81be06aa0948600e Mon Sep 17 00:00:00 2001 From: Jeremy Pople Date: Tue, 30 Jul 2024 21:39:01 -0400 Subject: [PATCH 2/3] rephrase --- .../configure-monitor/ConfigureMonitorDatabasesForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx b/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx index 38c7d03aa4..6ed8d0e8ea 100644 --- a/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx +++ b/clients/admin-ui/src/features/integrations/configure-monitor/ConfigureMonitorDatabasesForm.tsx @@ -7,7 +7,7 @@ import useCumulativeGetDatabases from "~/features/integrations/configure-monitor import { MonitorConfig } from "~/types/api"; const TOOLTIP_COPY = - "Selecting a project will monitor all current and future datasets found."; + "Selecting a project will monitor all current and future datasets within that project."; const ConfigureMonitorDatabasesForm = ({ monitor, isEditing, @@ -62,7 +62,7 @@ const ConfigureMonitorDatabasesForm = ({ <> - Select scope to monitor + Select projects to monitor Date: Wed, 31 Jul 2024 10:43:02 -0400 Subject: [PATCH 3/3] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1c27ec78..501383a124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ The types of changes are: - Changed text on system integrations tab to direct to new integration management [#5097](https://github.com/ethyca/fides/pull/5097) - Updates to consent experience styling [#5085](https://github.com/ethyca/fides/pull/5085) - Moves some endpoints for property-specific messaging from OSS -> plus [#5069](https://github.com/ethyca/fides/pull/5069) +- Text changes in monitor config table and form [#5142](https://github.com/ethyca/fides/pull/5142) ### Developer Experience - Add `.syncignore` to reduce file sync size with new volumes [#5104](https://github.com/ethyca/fides/pull/5104)