File tree 2 files changed +4
-2
lines changed
_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -610,7 +610,9 @@ function EnvironmentPauseResumeButton({
610
610
type = "submit"
611
611
disabled = { isLoading }
612
612
variant = { env . paused ? "primary/medium" : "danger/medium" }
613
- LeadingIcon = { isLoading ? < Spinner /> : env . paused ? PlayIcon : PauseIcon }
613
+ LeadingIcon = {
614
+ isLoading ? < Spinner color = "white" /> : env . paused ? PlayIcon : PauseIcon
615
+ }
614
616
shortcut = { { modifiers : [ "mod" ] , key : "enter" } }
615
617
>
616
618
{ env . paused ? "Resume environment" : "Pause environment" }
Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ export function TierPro({
678
678
< Button
679
679
variant = "primary/medium"
680
680
disabled = { isLoading }
681
- LeadingIcon = { isLoading ? ( ) => < Spinner color = "dark " /> : undefined }
681
+ LeadingIcon = { isLoading ? ( ) => < Spinner color = "white " /> : undefined }
682
682
form = "subscribe-pro"
683
683
>
684
684
{ `Upgrade to ${ plan . title } ` }
You can’t perform that action at this time.
0 commit comments