diff --git a/Common/Types/Icon/IconProp.ts b/Common/Types/Icon/IconProp.ts index 5a7127ae9c..8047da298a 100644 --- a/Common/Types/Icon/IconProp.ts +++ b/Common/Types/Icon/IconProp.ts @@ -143,6 +143,7 @@ enum IconProp { Brain = "Brain", FlowDiagram = "FlowDiagram", GitHub = "GitHub", + Bug = "Bug", } export default IconProp; diff --git a/Common/UI/Components/Icon/Icon.tsx b/Common/UI/Components/Icon/Icon.tsx index 1bbaf93b40..9bae8a152b 100644 --- a/Common/UI/Components/Icon/Icon.tsx +++ b/Common/UI/Components/Icon/Icon.tsx @@ -1319,6 +1319,17 @@ const Icon: FunctionComponent = ({ /> , ); + } else if (icon === IconProp.Bug) { + // Bug icon for exceptions - matching home page + return getSvgWrapper( + <> + + + , + ); } return <>; diff --git a/Dashboard/src/Components/NavBar/NavBar.tsx b/Dashboard/src/Components/NavBar/NavBar.tsx index 04681b893f..9b01743236 100644 --- a/Dashboard/src/Components/NavBar/NavBar.tsx +++ b/Dashboard/src/Components/NavBar/NavBar.tsx @@ -98,8 +98,8 @@ const DashboardNavbar: FunctionComponent = ( route: RouteUtil.populateRouteParams( RouteMap[PageMap.EXCEPTIONS] as Route, ), - icon: IconProp.Alert, - iconColor: "red", + icon: IconProp.Bug, + iconColor: "orange", }, { title: "Service Catalog",