Skip to content

Commit

Permalink
fix(v6): Resolved design feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
thatblindgeye authored and nicolethoen committed May 23, 2024
1 parent c719636 commit c5e575a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ const ComplexToolbarLogViewer = () => {

const ControlButton = () => (
<Button
variant={isPaused ? 'plain' : 'link'}
variant="link"
onClick={() => {
setIsPaused(!isPaused);
}}
icon={isPaused ? <PlayIcon /> : <PauseIcon />}
>
{isPaused ? <PlayIcon /> : <PauseIcon />}
{isPaused ? ` Resume Log` : ` Pause Log`}
</Button>
);
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5e575a

Please sign in to comment.