We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77a25b commit 45d35adCopy full SHA for 45d35ad
plugin-catalog/src/components/plugins/Detail.tsx
@@ -122,13 +122,16 @@ const pluginSnackbarAction = (closeCallback: () => void) => {
122
return (
123
<>
124
<Button
125
+ color="inherit"
126
onClick={() => {
127
window.location.reload();
128
}}
129
>
130
Reload Now
131
</Button>
- <Button onClick={closeCallback}>Close</Button>
132
+ <Button color="inherit" onClick={closeCallback}>
133
+ Close
134
+ </Button>
135
</>
136
);
137
};
@@ -222,7 +225,7 @@ export function PurePluginDetail({
222
225
color: 'white',
223
226
textTransform: 'none',
224
227
'&:hover': {
- color: 'black',
228
+ color: 'inherit',
229
},
230
231
onClick={onInstall}
0 commit comments