File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
src/pods/canvas/components/canvas-accessible/components Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -28,20 +28,24 @@ export const CollectionAccessible: React.FC<Props> = props => {
28
28
< >
29
29
< h3 ref = { collectionRefs . current [ table . id ] } >
30
30
{ table . tableName } collection
31
- { ! isTabletOrMobileDevice ? (
32
- < >
31
+ </ h3 >
32
+ { ! isTabletOrMobileDevice ? (
33
+ < ul >
34
+ < li >
33
35
< button type = "button" onClick = { ( ) => onEditTable ( table ) } >
34
36
Edit { table . tableName } collection
35
37
</ button >
38
+ </ li >
39
+ < li >
36
40
< button
37
41
type = "button"
38
42
onClick = { ( ) => onDeleteSelectedItem ( table . id ) }
39
43
>
40
44
Delete { table . tableName } collection
41
45
</ button >
42
- </ >
43
- ) : null }
44
- </ h3 >
46
+ </ li >
47
+ </ ul >
48
+ ) : null }
45
49
< h4 > Fields for { table . tableName } collection</ h4 >
46
50
< FieldList fieldList = { table . fields } listName = { table . tableName } />
47
51
< TableRelationsAccessible
You can’t perform that action at this time.
0 commit comments