Skip to content

Commit

Permalink
fix(decorator-mui): remove misplaced comma
Browse files Browse the repository at this point in the history
  • Loading branch information
soup-in-boots committed Nov 5, 2022
1 parent 9638693 commit 182b225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/decorator-mui/src/arrays/item.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function ItemComponent(props, ref) {
<div {...dragHandleProps} className={dragHandleClass}>
<Icon>drag_handle</Icon>
</div>
<div className={classes.forms}>{props.children}</div>,
<div className={classes.forms}>{props.children}</div>
<div key="controls" className={classes.controls}>
<Button onClick={props.moveUp} size="small" disabled={disabled}>
<Icon>keyboard_arrow_up</Icon>
Expand Down

0 comments on commit 182b225

Please sign in to comment.