Skip to content

Commit

Permalink
chore: update release plans icon
Browse files Browse the repository at this point in the history
  • Loading branch information
nunogois committed Nov 29, 2024
1 parent 3c01813 commit 259b5a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down Expand Up @@ -58,7 +58,7 @@ const icons: Record<string, typeof SvgIcon> = {
'/admin/cors': CorsIcon,
'/admin/billing': BillingIcon,
'/history': EventLogIcon,
'/release-management': LaunchIcon,
'/release-management': FactCheckOutlinedIcon,
'/personal': PersonalDashboardIcon,
GitHub: GitHubIcon,
Documentation: LibraryBooksIcon,
Expand Down
Original file line number Diff line number Diff line change
@@ -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';

Expand Down Expand Up @@ -43,7 +43,7 @@ export const TemplateFormDescription = () => {
return (
<StyledDescription>
<StyledDescriptionHeader>
<ReleaseTemplateIcon />
<FactCheckOutlinedIcon />
Release templates
</StyledDescriptionHeader>
<p>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/utils/strategyNames.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -33,7 +33,7 @@ export const getFeatureStrategyIcon = (strategyName?: string) => {
case 'applicationHostname':
return LocationOnIcon;
case 'releasePlanTemplate':
return FormatListNumberedIcon;
return FactCheckOutlinedIcon;
default:
return CodeIcon;
}
Expand Down

0 comments on commit 259b5a3

Please sign in to comment.