Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions plugin-catalog/src/components/plugins/Detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,16 @@ const pluginSnackbarAction = (closeCallback: () => void) => {
return (
<>
<Button
color="inherit"
onClick={() => {
window.location.reload();
}}
>
Reload Now
</Button>
<Button onClick={closeCallback}>Close</Button>
<Button color="inherit" onClick={closeCallback}>
Close
</Button>
</>
);
};
Expand Down Expand Up @@ -222,7 +225,7 @@ export function PurePluginDetail({
color: 'white',
textTransform: 'none',
'&:hover': {
color: 'black',
color: 'inherit',
},
}}
onClick={onInstall}
Expand All @@ -233,11 +236,8 @@ export function PurePluginDetail({
) : null
) : (
<>
<LoadingButton progress={currentActionProgress} onCancel={onCancel} />
<Tooltip title={`${currentActionState}:${currentActionMessage}`}>
<Typography variant="body1" sx={{ marginLeft: 1 }}>
{currentAction}
</Typography>
<LoadingButton progress={currentActionProgress} onCancel={onCancel} />
</Tooltip>
</>
),
Expand Down