Skip to content

Commit 6d3d655

Browse files
authored
Merge pull request #360 from headlamp-k8s/fix-plugin-catalog-tooltip
LoadingButton: fix poor contrast on loading install button
2 parents 81ab3d6 + c987cc2 commit 6d3d655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin-catalog/src/components/plugins/LoadingButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const LoadingButton = (props: LoadingButtonProps) => {
2525
textTransform: 'none',
2626
}}
2727
>
28-
<CircularProgress color="secondary" value={props.progress} size={20} />
28+
<CircularProgress color="primary" value={props.progress} size={20} />
2929
</Button>
3030
);
3131
if (props.progress > 0 && props.progress < 100) {

0 commit comments

Comments
 (0)