Skip to content

Commit 0ef6d9c

Browse files
committed
[IGNORE] fix lint issues
1 parent 4f147aa commit 0ef6d9c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

plugin-system/src/components/Variables/VariableEditorForm/VariablePreview.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ export function VariablePreview(props: VariablePreviewProps): ReactElement {
7777
<Card variant="outlined">
7878
<Box sx={{ display: 'flex', flexWrap: 'wrap', gap: 1, m: 2 }}>
7979
{variablePreviewState}
80-
{values?.slice(0, maxValues).map((val, index) => <Chip size="small" key={index} label={val} />)}
80+
{values?.slice(0, maxValues).map((val, index) => (
81+
<Chip size="small" key={index} label={val} />
82+
))}
8183
{notShown > 0 && <Chip onClick={showAll} variant="outlined" size="small" label={`+${notShown} more`} />}
8284
</Box>
8385
</Card>

0 commit comments

Comments
 (0)