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 c828a0aCopy full SHA for c828a0a
plugin-catalog/src/components/plugins/Detail.tsx
@@ -122,13 +122,14 @@ 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}>Close</Button>
133
</>
134
);
135
};
@@ -222,7 +223,7 @@ export function PurePluginDetail({
222
223
color: 'white',
224
textTransform: 'none',
225
'&:hover': {
- color: 'black',
226
+ color: 'inherit',
227
},
228
229
onClick={onInstall}
0 commit comments