Skip to content

Commit 84fa3f0

Browse files
author
Sharma
committed
Fixed grid size for operators
1 parent 1f7cfff commit 84fa3f0

File tree

1 file changed

+2
-2
lines changed
  • packages/react-sdk-components/src/components/designSystemExtension/Operator

1 file changed

+2
-2
lines changed

packages/react-sdk-components/src/components/designSystemExtension/Operator/Operator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,10 +170,10 @@ export default function Operator(props: OperatorProps) {
170170
return (
171171
<React.Fragment key={field.id}>
172172
<Grid2 container size={{ xs: 12 }} spacing={1}>
173-
<Grid2 size={{ xs: 12 }}>
173+
<Grid2 size={{ xs: 6 }}>
174174
<Typography variant='caption'>{field.name}</Typography>
175175
</Grid2>
176-
<Grid2 size={{ xs: 12 }}>
176+
<Grid2 size={{ xs: 6 }}>
177177
<Typography variant='subtitle2'>{field.value}</Typography>
178178
</Grid2>
179179
</Grid2>

0 commit comments

Comments
 (0)