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

Add new icons for organization discovery #4363

Merged
merged 2 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/serious-ducks-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/console": patch
---

Update icons in side panel
3 changes: 2 additions & 1 deletion apps/console/src/features/core/configs/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
BoltIcon,
EnvelopeGearIcon,
EnvelopeIcon,
EnvelopeMagnifyingGlassIcon,
HierarchyIcon,
LightbulbOnIcon,
LinearNodesIcon,
Expand Down Expand Up @@ -422,7 +423,7 @@ export const getAppViewRoutes = (useExtendedRoutes: boolean = false): RouteInter
}),
exact: true,
icon: {
icon: <HierarchyIcon fill="black" />
icon: <EnvelopeMagnifyingGlassIcon fill="black" />
},
id: "organizationDiscovery",
name: "console:manage.features.sidePanel.emailDomainDiscovery",
Expand Down
4 changes: 2 additions & 2 deletions apps/console/src/features/core/utils/route-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

import {
BuildingGearIcon,
BuildingPenIcon,
DatabaseDocumentIcon,
PaletteIcon,
SquareUserIcon
Expand Down Expand Up @@ -269,7 +269,7 @@ export class RouteUtils {
};

const organizationManagement: Omit<RouteInterface, "showOnSidePanel"> = {
icon: BuildingGearIcon,
icon: BuildingPenIcon,
id: "organizationManagement",
name: "Organization Management"
};
Expand Down
Loading