diff --git a/client/src/components/plugins/icons.js b/client/src/components/plugins/icons.js index a7a4224b70ca..f48f0df01595 100644 --- a/client/src/components/plugins/icons.js +++ b/client/src/components/plugins/icons.js @@ -24,6 +24,7 @@ import { faEye, faFile, faFileArchive, + faFileContract, faFileExport, faFilter, faFolder, @@ -76,6 +77,7 @@ library.add( faExternalLinkAlt, faEye, faFileArchive, + faFileContract, faFileExport, faFilter, faFile, diff --git a/client/src/stores/activitySetup.ts b/client/src/stores/activitySetup.ts index 8cc09c127844..4336729659e3 100644 --- a/client/src/stores/activitySetup.ts +++ b/client/src/stores/activitySetup.ts @@ -111,7 +111,19 @@ export const Activities = [ title: "Datasets", tooltip: "Show all datasets", to: "/datasets/list", - visible: false, + visible: true, + }, + { + anonymous: false, + description: "Display and create new Pages.", + icon: "fa-file-contract", + id: "pages", + mutable: false, + optional: true, + title: "Pages", + tooltip: "Show all pages", + to: "/pages/list", + visible: true, }, ];