Skip to content

Commit

Permalink
Update icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
DaoDaoNoCode committed Oct 9, 2024
1 parent 557fa5e commit 78d7207
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
ToolbarItem,
Tooltip,
Truncate,
Icon,
} from '@patternfly/react-core';
import { DownloadIcon } from '@patternfly/react-icons/dist/esm/icons/download-icon';
import { LogViewer, LogViewerSearch } from '@patternfly/react-log-viewer';
Expand Down Expand Up @@ -335,15 +336,19 @@ const LogsTab: React.FC<LogsTabProps> = ({ task, isCached }) => {
>
{isPaused ? (
<Tooltip content="Resume log streaming.">
<OutlinedPlayCircleIcon />
<Icon iconSize="md">
<OutlinedPlayCircleIcon />
</Icon>
</Tooltip>
) : !logsLoaded || podStatus?.podInitializing ? (
<Tooltip content="Loading log">
<Spinner size="sm" />
</Tooltip>
) : (
<Tooltip content="Pause log streaming.">
<OutlinedPauseCircleIcon />
<Icon iconSize="md">
<OutlinedPauseCircleIcon />
</Icon>
</Tooltip>
)}
</Button>
Expand Down

0 comments on commit 78d7207

Please sign in to comment.