-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable editing fields for GVL vendors (#4327)
- Loading branch information
Showing
13 changed files
with
278 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { Box, Link } from "@fidesui/react"; | ||
|
||
import EmptyTableState from "~/features/common/table/EmptyTableState"; | ||
|
||
const GVLNotice = () => ( | ||
<Box mb="6" maxW="720px" data-testid="locked-for-GVL-notice"> | ||
<EmptyTableState | ||
title="This system is part of the TCF Global Vendor List (GVL)" | ||
description={ | ||
<> | ||
As a result, the system fields are not editable as they come directly | ||
from Fides Compass and the Global Vendor List (GVL). In some cases | ||
where the legal basis has been declared to be flexible, you may update | ||
the legal basis for particular data uses.{" "} | ||
<Link | ||
href="https://fid.es/tcf_gvl" | ||
isExternal | ||
color="complimentary.500" | ||
> | ||
For more information on the Global Vendor List, click here. | ||
</Link> | ||
</> | ||
} | ||
/> | ||
</Box> | ||
); | ||
|
||
export default GVLNotice; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.