File tree 1 file changed +3
-3
lines changed
packages/material-renderers/src/additional
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import { withJsonFormsMasterListItemProps } from '@jsonforms/react';
27
27
import {
28
28
Avatar ,
29
29
IconButton ,
30
- ListItem ,
30
+ ListItemButton ,
31
31
ListItemAvatar ,
32
32
ListItemSecondaryAction ,
33
33
ListItemText ,
@@ -48,7 +48,7 @@ export const ListWithDetailMasterItem = ({
48
48
disableRemove,
49
49
} : StatePropsOfMasterItem ) => {
50
50
return (
51
- < ListItem button selected = { selected } onClick = { handleSelect ( index ) } >
51
+ < ListItemButton selected = { selected } onClick = { handleSelect ( index ) } >
52
52
< ListItemAvatar >
53
53
< Avatar aria-label = 'Index' > { index + 1 } </ Avatar >
54
54
</ ListItemAvatar >
@@ -70,7 +70,7 @@ export const ListWithDetailMasterItem = ({
70
70
</ Tooltip >
71
71
</ ListItemSecondaryAction >
72
72
) }
73
- </ ListItem >
73
+ </ ListItemButton >
74
74
) ;
75
75
} ;
76
76
You can’t perform that action at this time.
0 commit comments