File tree 7 files changed +7
-6
lines changed
7 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ const UserList = () => {
136
136
return (
137
137
< div >
138
138
{ type === 'simple' ? searchForm : advanceSearchForm }
139
- < Table columns = { columns } rowKey = "email" { ...tableProps } />
139
+ < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } />
140
140
141
141
< div style = { { background : '#f5f5f5' , padding : 8 } } >
142
142
< p > Current Table:</ p >
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ export default () => {
122
122
return (
123
123
< div >
124
124
{ type === 'simple' ? searchForm : advanceSearchForm }
125
- < Table columns = { columns } rowKey = "email" { ...tableProps } />
125
+ < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } />
126
126
127
127
< div style = { { background : '#f5f5f5' , padding : 8 } } >
128
128
< p > Current Table:</ p >
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export default () => {
126
126
return (
127
127
< div >
128
128
{ type === 'simple' ? searchForm : advanceSearchForm }
129
- < Table columns = { columns } rowKey = "email" { ...tableProps } />
129
+ < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } />
130
130
131
131
< div style = { { background : '#f5f5f5' , padding : 8 } } >
132
132
< p > Current Table:</ p >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ export default () => {
131
131
< div >
132
132
< Button onClick = { ( ) => setReady ( ( r ) => ! r ) } > toggle ready</ Button >
133
133
{ type === 'simple' ? searchForm : advanceSearchForm }
134
- < Table columns = { columns } rowKey = "email" { ...tableProps } />
134
+ < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } />
135
135
136
136
< div style = { { background : '#f5f5f5' , padding : 8 } } >
137
137
< p > Current Table:</ p >
Original file line number Diff line number Diff line change @@ -49,5 +49,5 @@ export default () => {
49
49
} ,
50
50
] ;
51
51
52
- return < Table columns = { columns } rowKey = "email" { ...tableProps } /> ;
52
+ return < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } /> ;
53
53
} ;
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export default () => {
88
88
return (
89
89
< div >
90
90
{ searchForm }
91
- < Table columns = { columns } rowKey = "email" { ...tableProps } />
91
+ < Table columns = { columns } rowKey = "email" style = { { overflow : 'auto' } } { ...tableProps } />
92
92
93
93
< div style = { { background : '#f5f5f5' , padding : 8 } } >
94
94
< p > Current Table:</ p >
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ export default () => {
84
84
dataSource = { list }
85
85
rowKey = { ( r : Item , index : number ) => getKey ( index ) . toString ( ) }
86
86
pagination = { false }
87
+ style = { { overflow : 'auto' } }
87
88
/>
88
89
</ ReactDragListView >
89
90
</ Form >
You can’t perform that action at this time.
0 commit comments