1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00

Fix PR commments

This commit is contained in:
andreas-unleash 2022-07-13 09:47:22 +03:00
parent e8a77d4928
commit 8f4f1f6f5f
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ interface IContextBannerProps {
context: SdkContextSchema; context: SdkContextSchema;
} }
const StyledContextFieldList = styled('ul')(({theme}) => ({ const StyledContextFieldList = styled('ul')(({ theme }) => ({
color: colors.black, color: colors.black,
listStyleType: 'none', listStyleType: 'none',
paddingInlineStart: theme.spacing(16), paddingInlineStart: theme.spacing(16),

View File

@ -10,7 +10,7 @@ interface IFeatureStatusCellProps {
enabled: boolean; enabled: boolean;
} }
const StyledFalseChip = styled(Chip)(({theme}) => ({ const StyledFalseChip = styled(Chip)(({ theme }) => ({
width: 80, width: 80,
borderRadius: '5px', borderRadius: '5px',
border: `1px solid ${theme.palette.error.main}`, border: `1px solid ${theme.palette.error.main}`,
@ -23,7 +23,7 @@ const StyledFalseChip = styled(Chip)(({theme}) => ({
}, },
})); }));
const StyledTrueChip = styled(Chip)(({theme}) => ({ const StyledTrueChip = styled(Chip)(({ theme }) => ({
width: 80, width: 80,
borderRadius: '5px', borderRadius: '5px',
border: `1px solid ${theme.palette.success.main}`, border: `1px solid ${theme.palette.success.main}`,