Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LA-203 Update-CMP-Privacy-Center-powered-by-URL-to-https-ethyca.com #5656

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ Changes can also be flagged with a GitHub label for tracking purposes. The URL o
- Added Action Center MVP behind new feature flag [#5622](https://github.com/ethyca/fides/pull/5622)
- Added cache-clearing methods to the `DBCache` model to allow deleting cache entries [#5629](https://github.com/ethyca/fides/pull/5629)

### Changed
- Updated brand link url [#5656](https://github.com/ethyca/fides/pull/5656)

### Fixed
- Fixed issue where the custom report "reset" button was not working as expected [#5649](https://github.com/ethyca/fides/pull/5649)
- Fixed column ordering issue in the Data Map report [#5649](https://github.com/ethyca/fides/pull/5649)
Expand Down
2 changes: 1 addition & 1 deletion clients/fides-js/src/components/BrandLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import EthycaLogo from "./EthycaLogo";
const BrandLink = () => (
<div className="fides-brand">
<a
href="https://fid.es/powered"
href="https://ethyca.com/"
target="_blank"
rel="noopener noreferrer"
className="fides-brand-link"
Expand Down
2 changes: 2 additions & 0 deletions clients/fides-js/src/components/EthycaLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ const EthycaLogo = () => (
height="20"
fill="currentColor"
className="ethyca-logo"
role="img"
aria-label="Ethyca"
>
<path d="M11.5602 0H8.70311V7.9999H11.5602V0ZM23.0026 12.0001H20.1455V20H23.0026V12.0001ZM14.1258 20H17.5799L12.1315 11.9774V17.0631L14.1258 20ZM8.13179 17.0626V11.9769L2.68588 19.9995H6.14003L8.13129 17.0626H8.13179ZM23.5744 2.93688V8.02263L29.0198 0H25.5682L23.5739 2.93688H23.5744ZM19.5742 2.93688L17.5799 0H14.1258L19.5742 8.02263V2.93688ZM19.5717 8.57121H12.132V11.4283H19.5717V8.57121ZM31 8.57121H23.5603V11.4283H31V8.57121ZM8.13179 8.57121H0.691589V11.4283H8.13179V8.57121Z" />
</svg>
Expand Down
10 changes: 9 additions & 1 deletion clients/privacy-center/components/BrandLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,17 @@ const BrandLink = ({
right={right}
textDecoration="none"
_hover={{ textDecoration: "none" }}
href="https://ethyca.com/"
{...props}
>
Powered by <EthycaLogo color="minos.500" h="20px" w="31px" />
Powered by{" "}
<EthycaLogo
color="minos.500"
h="20px"
w="31px"
role="img"
aria-label="Ethyca"
/>
</Link>
);
};
Expand Down
2 changes: 1 addition & 1 deletion clients/privacy-center/cypress/e2e/consent-banner.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ describe("Consent overlay", () => {
cy.get("a.fides-brand-link").should(
"have.attr",
"href",
"https://fid.es/powered",
"https://ethyca.com/",
);
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
privacyCenterUrl: "http://localhost:3001",
fidesApiUrl: "http://localhost:8080/api/v1",
fidesPrimaryColor: "#008000",
showFidesBrandLink: true,
},
};
if (init !== "false") {
Expand Down
Loading