Skip to content

Commit

Permalink
Bump macaw and add padding
Browse files Browse the repository at this point in the history
  • Loading branch information
poulch committed Sep 15, 2023
1 parent 948fa2c commit aa7f9e7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 17 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/styles": "^4.11.4",
"@reach/auto-id": "^0.16.0",
"@saleor/macaw-ui": "0.8.0-pre.132",
"@saleor/macaw-ui": "0.8.0-pre.133",
"@saleor/sdk": "0.6.0",
"@sentry/react": "^6.0.0",
"@types/faker": "^5.1.6",
Expand Down
20 changes: 11 additions & 9 deletions src/components/Metadata/MetadataCardTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,17 @@ export const MetadataCardTable = ({
/>
</TableCell>
<TableCell>
<Textarea
width="100%"
rows={1}
size="small"
aria-label={`${valueInputPrefix}${nameSeparator}${fieldIndex}`}
name={`${valueInputPrefix}${nameSeparator}${fieldIndex}`}
onChange={onChange}
value={field.value}
/>
<Box paddingY={3}>
<Textarea
width="100%"
rows={1}
size="small"
aria-label={`${valueInputPrefix}${nameSeparator}${fieldIndex}`}
name={`${valueInputPrefix}${nameSeparator}${fieldIndex}`}
onChange={onChange}
value={field.value}
/>
</Box>
</TableCell>
<TableCell style={{ paddingRight: vars.spacing[6] }}>
<Box display="flex" justifyContent="flex-end">
Expand Down

0 comments on commit aa7f9e7

Please sign in to comment.