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 10, 2024
1 parent 756383f commit 3d956d3
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.">

Check warning on line 338 in frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/runLogs/LogsTab.tsx

View check run for this annotation

Codecov / codecov/patch

frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/runLogs/LogsTab.tsx#L338

Added line #L338 was not covered by tests
<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 3d956d3

Please sign in to comment.