diff --git a/CHANGELOG.md b/CHANGELOG.md index 52ad707508..ae7a635877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ The types of changes are: * Added the connection key to the execution log [#2100](https://github.com/ethyca/fides/pull/2100) * Added endpoints to retrieve DSR `Rule`s and `Rule Target`s [#2116](https://github.com/ethyca/fides/pull/2116) +* Add link to Classify Systems page in nav side bar [#2128](https://github.com/ethyca/fides/pull/2128) * Dataset classification UI now polls for results [#2123](https://github.com/ethyca/fides/pull/2123) ### Changed diff --git a/clients/admin-ui/src/features/common/nav/v2/nav-config.test.ts b/clients/admin-ui/src/features/common/nav/v2/nav-config.test.ts index 732df583e1..b23855893f 100644 --- a/clients/admin-ui/src/features/common/nav/v2/nav-config.test.ts +++ b/clients/admin-ui/src/features/common/nav/v2/nav-config.test.ts @@ -85,6 +85,7 @@ describe("configureNavGroups", () => { { title: "View systems", path: "/system" }, { title: "Add systems", path: "/add-systems" }, { title: "Manage datasets", path: "/dataset" }, + { title: "Classify systems", path: "/classify-systems" }, ], }); }); diff --git a/clients/admin-ui/src/features/common/nav/v2/nav-config.ts b/clients/admin-ui/src/features/common/nav/v2/nav-config.ts index b1cdeb4470..c62c09d38d 100644 --- a/clients/admin-ui/src/features/common/nav/v2/nav-config.ts +++ b/clients/admin-ui/src/features/common/nav/v2/nav-config.ts @@ -39,6 +39,11 @@ export const NAV_CONFIG: NavConfigGroup[] = [ { title: "View systems", path: "/system" }, { title: "Add systems", path: "/add-systems" }, { title: "Manage datasets", path: "/dataset" }, + { + title: "Classify systems", + path: "/classify-systems", + requiresPlus: true, + }, ], }, {