mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
Fix PR commments
This commit is contained in:
parent
e8a77d4928
commit
8f4f1f6f5f
@ -6,7 +6,7 @@ interface IContextBannerProps {
|
||||
context: SdkContextSchema;
|
||||
}
|
||||
|
||||
const StyledContextFieldList = styled('ul')(({theme}) => ({
|
||||
const StyledContextFieldList = styled('ul')(({ theme }) => ({
|
||||
color: colors.black,
|
||||
listStyleType: 'none',
|
||||
paddingInlineStart: theme.spacing(16),
|
||||
|
@ -10,7 +10,7 @@ interface IFeatureStatusCellProps {
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
const StyledFalseChip = styled(Chip)(({theme}) => ({
|
||||
const StyledFalseChip = styled(Chip)(({ theme }) => ({
|
||||
width: 80,
|
||||
borderRadius: '5px',
|
||||
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,
|
||||
borderRadius: '5px',
|
||||
border: `1px solid ${theme.palette.success.main}`,
|
||||
|
Loading…
Reference in New Issue
Block a user