Skip to content

Commit

Permalink
Text fixes on monitor configuration UI (#5142)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpople authored Jul 31, 2024
1 parent 59de170 commit 7e88b0f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const MonitorConfigTab = ({
isDisplayAll
/>
),
header: (props) => <DefaultHeaderCell value="Location" {...props} />,
header: (props) => <DefaultHeaderCell value="Scope" {...props} />,
}),
columnHelper.accessor((row) => row.execution_frequency, {
id: "frequency",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const MonitorDatabasePicker = ({
columnHelper.accessor((row) => row.id, {
id: "id",
cell: (props) => <DefaultCell value={props.getValue()} />,
header: (props) => <DefaultHeaderCell value="Projects" {...props} />,
header: (props) => <DefaultHeaderCell value="Scope" {...props} />,
}),
],
[handleToggleSelection, handleToggleAll, allSelected, someSelected]
Expand Down

0 comments on commit 7e88b0f

Please sign in to comment.