File tree Expand file tree Collapse file tree 5 files changed +40
-28
lines changed Expand file tree Collapse file tree 5 files changed +40
-28
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ class Applications extends Component<Stores<'appStore'>> {
59
59
}
60
60
maxWidth = { 1000 } >
61
61
< Grid item xs = { 12 } >
62
- < Paper elevation = { 6 } >
62
+ < Paper elevation = { 6 } style = { { overflowX : 'auto' } } >
63
63
< Table id = "app-table" >
64
64
< TableHead >
65
65
< TableRow >
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class Clients extends Component<Stores<'clientStore'>> {
54
54
</ Button >
55
55
} >
56
56
< Grid item xs = { 12 } >
57
- < Paper elevation = { 6 } >
57
+ < Paper elevation = { 6 } style = { { overflowX : 'auto' } } >
58
58
< Table id = "client-table" >
59
59
< TableHead >
60
60
< TableRow style = { { textAlign : 'center' } } >
Original file line number Diff line number Diff line change @@ -131,29 +131,41 @@ const PanelWrapper: React.FC<IPanelWrapperProps> = ({
131
131
} ) => {
132
132
const Icon = icon ;
133
133
return (
134
- < Container style = { { display : 'block' , width : '100%' , margin : '20px' } } >
135
- < Typography variant = "h5" >
136
- { Icon ? (
137
- < span >
138
- < Icon />
139
-
140
- </ span >
141
- ) : null }
142
- { name }
143
- { refresh ? (
144
- < Button
145
- style = { { float : 'right' } }
146
- onClick = { ( ) => {
147
- refresh ( ) ;
148
- } } >
149
- < Refresh />
150
- </ Button >
151
- ) : null }
152
- </ Typography >
153
- { description ? < Typography variant = "subtitle1" > { description } </ Typography > : null }
154
- < hr />
155
- < div className = { name . toLowerCase ( ) . trim ( ) . replace ( / / g, '-' ) } > { children } </ div >
156
- </ Container >
134
+ < div
135
+ style = { {
136
+ width : '100%' ,
137
+ paddingLeft : '16px' ,
138
+ paddingRight : '16px' ,
139
+ } } >
140
+ < Container
141
+ style = { {
142
+ display : 'block' ,
143
+ width : '100%' ,
144
+ margin : '12px 0px' ,
145
+ } } >
146
+ < Typography variant = "h5" >
147
+ { Icon ? (
148
+ < span >
149
+ < Icon />
150
+
151
+ </ span >
152
+ ) : null }
153
+ { name }
154
+ { refresh ? (
155
+ < Button
156
+ style = { { float : 'right' } }
157
+ onClick = { ( ) => {
158
+ refresh ( ) ;
159
+ } } >
160
+ < Refresh />
161
+ </ Button >
162
+ ) : null }
163
+ </ Typography >
164
+ { description ? < Typography variant = "subtitle1" > { description } </ Typography > : null }
165
+ < hr />
166
+ < div className = { name . toLowerCase ( ) . trim ( ) . replace ( / / g, '-' ) } > { children } </ div >
167
+ </ Container >
168
+ </ div >
157
169
) ;
158
170
} ;
159
171
@@ -225,7 +237,7 @@ class PluginInfo extends Component<{pluginInfo: IPlugin}> {
225
237
} ,
226
238
} = this ;
227
239
return (
228
- < div >
240
+ < div style = { { wordWrap : 'break-word' } } >
229
241
{ name ? (
230
242
< Typography variant = "body2" className = "name" >
231
243
Name: < span > { name } </ span >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Plugins extends Component<Stores<'pluginStore'>> {
27
27
return (
28
28
< DefaultPage title = "Plugins" maxWidth = { 1000 } >
29
29
< Grid item xs = { 12 } >
30
- < Paper elevation = { 6 } >
30
+ < Paper elevation = { 6 } style = { { overflowX : 'auto' } } >
31
31
< Table id = "plugin-table" >
32
32
< TableHead >
33
33
< TableRow >
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ class Users extends Component<WithStyles<'wrapper'> & Stores<'userStore'>> {
80
80
</ Button >
81
81
} >
82
82
< Grid item xs = { 12 } >
83
- < Paper elevation = { 6 } >
83
+ < Paper elevation = { 6 } style = { { overflowX : 'auto' } } >
84
84
< Table id = "user-table" >
85
85
< TableHead >
86
86
< TableRow style = { { textAlign : 'center' } } >
You can’t perform that action at this time.
0 commit comments