File tree 1 file changed +6
-6
lines changed
plugin-catalog/src/components/plugins
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -122,13 +122,16 @@ const pluginSnackbarAction = (closeCallback: () => void) => {
122
122
return (
123
123
< >
124
124
< Button
125
+ color = "inherit"
125
126
onClick = { ( ) => {
126
127
window . location . reload ( ) ;
127
128
} }
128
129
>
129
130
Reload Now
130
131
</ Button >
131
- < Button onClick = { closeCallback } > Close</ Button >
132
+ < Button color = "inherit" onClick = { closeCallback } >
133
+ Close
134
+ </ Button >
132
135
</ >
133
136
) ;
134
137
} ;
@@ -222,7 +225,7 @@ export function PurePluginDetail({
222
225
color : 'white' ,
223
226
textTransform : 'none' ,
224
227
'&:hover' : {
225
- color : 'black ' ,
228
+ color : 'inherit ' ,
226
229
} ,
227
230
} }
228
231
onClick = { onInstall }
@@ -233,11 +236,8 @@ export function PurePluginDetail({
233
236
) : null
234
237
) : (
235
238
< >
236
- < LoadingButton progress = { currentActionProgress } onCancel = { onCancel } />
237
239
< Tooltip title = { `${ currentActionState } :${ currentActionMessage } ` } >
238
- < Typography variant = "body1" sx = { { marginLeft : 1 } } >
239
- { currentAction }
240
- </ Typography >
240
+ < LoadingButton progress = { currentActionProgress } onCancel = { onCancel } />
241
241
</ Tooltip >
242
242
</ >
243
243
) ,
You can’t perform that action at this time.
0 commit comments