1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-21 13:47:39 +02:00

fix: change application success to checkbox icon (#6417)

This commit is contained in:
Jaanus Sellin 2024-03-04 14:16:45 +02:00 committed by GitHub
parent 68729333e0
commit 19fbd7a0c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,12 @@ import {
} from 'openapi'; } from 'openapi';
import { useRequiredPathParam } from 'hooks/useRequiredPathParam'; import { useRequiredPathParam } from 'hooks/useRequiredPathParam';
import { HelpIcon } from '../common/HelpIcon/HelpIcon'; import { HelpIcon } from '../common/HelpIcon/HelpIcon';
import { CloudCircle, Flag, WarningAmberRounded } from '@mui/icons-material'; import {
CheckCircle,
CloudCircle,
Flag,
WarningAmberRounded,
} from '@mui/icons-material';
import TimeAgo from 'react-timeago'; import TimeAgo from 'react-timeago';
import { usePlausibleTracker } from 'hooks/usePlausibleTracker'; import { usePlausibleTracker } from 'hooks/usePlausibleTracker';
import { getApplicationIssueMode } from './ApplicationIssues/ApplicationIssues'; import { getApplicationIssueMode } from './ApplicationIssues/ApplicationIssues';
@ -127,7 +132,7 @@ const useElementWidth = () => {
}; };
const SuccessStatus = () => ( const SuccessStatus = () => (
<StyledStatus mode='success'> <StyledStatus mode='success'>
<WarningAmberRounded <CheckCircle
sx={(theme) => ({ sx={(theme) => ({
color: theme.palette.success.main, color: theme.palette.success.main,
})} })}