From 259b5a385d2ec7fcf6fe5622bc7fe181a76b51e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Fri, 29 Nov 2024 13:10:15 +0000 Subject: [PATCH] chore: update release plans icon --- .../layout/MainLayout/NavigationSidebar/IconRenderer.tsx | 4 ++-- .../releases/ReleasePlanTemplate/TemplateFormDescription.tsx | 4 ++-- frontend/src/utils/strategyNames.tsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx b/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx index e2316ca05687..e55e94f6e4b8 100644 --- a/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx +++ b/frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx @@ -27,7 +27,7 @@ import BillingIcon from '@mui/icons-material/CreditCardOutlined'; import EventLogIcon from '@mui/icons-material/EventNoteOutlined'; import GitHubIcon from '@mui/icons-material/GitHub'; import LibraryBooksIcon from '@mui/icons-material/LibraryBooks'; -import LaunchIcon from '@mui/icons-material/Launch'; +import FactCheckOutlinedIcon from '@mui/icons-material/FactCheckOutlined'; import PersonalDashboardIcon from '@mui/icons-material/DashboardOutlined'; import type { FC } from 'react'; @@ -58,7 +58,7 @@ const icons: Record = { '/admin/cors': CorsIcon, '/admin/billing': BillingIcon, '/history': EventLogIcon, - '/release-management': LaunchIcon, + '/release-management': FactCheckOutlinedIcon, '/personal': PersonalDashboardIcon, GitHub: GitHubIcon, Documentation: LibraryBooksIcon, diff --git a/frontend/src/component/releases/ReleasePlanTemplate/TemplateFormDescription.tsx b/frontend/src/component/releases/ReleasePlanTemplate/TemplateFormDescription.tsx index 5d288cebb7d3..bd0aa4f2b8c8 100644 --- a/frontend/src/component/releases/ReleasePlanTemplate/TemplateFormDescription.tsx +++ b/frontend/src/component/releases/ReleasePlanTemplate/TemplateFormDescription.tsx @@ -1,4 +1,4 @@ -import ReleaseTemplateIcon from '@mui/icons-material/DashboardOutlined'; +import FactCheckOutlinedIcon from '@mui/icons-material/FactCheckOutlined'; import { ReactComponent as MilestoneIcon } from 'assets/icons/milestone.svg'; import { styled } from '@mui/material'; @@ -43,7 +43,7 @@ export const TemplateFormDescription = () => { return ( - + Release templates

diff --git a/frontend/src/utils/strategyNames.tsx b/frontend/src/utils/strategyNames.tsx index b3a1db9d8b4b..c6ba3e3f2ca9 100644 --- a/frontend/src/utils/strategyNames.tsx +++ b/frontend/src/utils/strategyNames.tsx @@ -6,7 +6,7 @@ import LanguageIcon from '@mui/icons-material/Language'; import PowerSettingsNewIcon from '@mui/icons-material/PowerSettingsNew'; import CodeIcon from '@mui/icons-material/Code'; import { ReactComponent as RolloutIcon } from 'assets/icons/rollout.svg'; -import FormatListNumberedIcon from '@mui/icons-material/FormatListNumbered'; +import FactCheckOutlinedIcon from '@mui/icons-material/FactCheckOutlined'; export const formatStrategyName = (strategyName: string): string => { return formattedStrategyNames[strategyName] ?? strategyName; @@ -33,7 +33,7 @@ export const getFeatureStrategyIcon = (strategyName?: string) => { case 'applicationHostname': return LocationOnIcon; case 'releasePlanTemplate': - return FormatListNumberedIcon; + return FactCheckOutlinedIcon; default: return CodeIcon; }