Skip to content

Commit

Permalink
Merge pull request #171 from Exabyte-io/hotfix/circular-progress
Browse files Browse the repository at this point in the history
chore: add size
  • Loading branch information
timurbazhirov committed Dec 15, 2023
2 parents 1ec3ea7 + 0a95d4d commit 6e86ff4
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,13 @@ function CodeExecutionControls(props: CodeExecutionControlsProps) {
},
[ExecutionStatus.Loading]: {
disabled: true,
indicator: <CircularProgress color="secondary" />,
indicator: (
<CircularProgress color="secondary" size={theme.typography.button.fontSize} />
),
},
[ExecutionStatus.Running]: {
disabled: true,
indicator: <CircularProgress color="success" />,
indicator: <CircularProgress color="success" size={theme.typography.button.fontSize} />,
},
[ExecutionStatus.Ready]: {
disabled: false,
Expand Down

0 comments on commit 6e86ff4

Please sign in to comment.