Skip to content

Commit

Permalink
fix: Correct pod log viewer to support short log lines. Fixes #14402 (#…
Browse files Browse the repository at this point in the history
…14543) (#14561)

Signed-off-by: Yuan Tang <[email protected]>
Co-authored-by: Yuan Tang <[email protected]>
  • Loading branch information
gcp-cherry-pick-bot[bot] and terrytangyuan authored Jul 18, 2023
1 parent 9612f73 commit b0a1d82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const PodsLogsViewer = (props: PodLogsProps) => {
<Grid
cellRenderer={cellRenderer}
columnCount={1}
columnWidth={maxWidth}
columnWidth={Math.max(width, maxWidth)}
height={height}
rowCount={logs.length}
rowHeight={18}
Expand Down

0 comments on commit b0a1d82

Please sign in to comment.