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

style fix

This commit is contained in:
andreas-unleash 2022-08-08 13:46:11 +03:00
parent e75f03b8f2
commit f057bbfd61
2 changed files with 3 additions and 3 deletions

View File

@ -63,11 +63,11 @@ export const PlaygroundResultFeatureStrategyItem = ({
condition={index > 0}
show={<StrategySeparator text="OR" />}
/>
<StyledItemWrapper sx={{ mr: 2 }}>
<StyledItemWrapper sx={{ mr: 3 }}>
<Typography
variant={'subtitle1'}
color={'text.secondary'}
sx={{ ml: 1 }}
sx={{ ml: 2 }}
>
{index + 1}
</Typography>

View File

@ -36,7 +36,7 @@ export const PlaygroundResultStrategyExecution = ({
const { uiConfig } = useUiConfig();
const { classes: styles } = useStyles();
const hasConstraints = Boolean(constraints && constraints.length > 0);
const hasConstraints = Boolean(constraints && constraints?.length > 0);
const hasParameters = Object.keys(parameters).length === 0;
if (!parameters) {