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) (#14562)

Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
Co-authored-by: Yuan Tang <terrytangyuan@gmail.com>
  • Loading branch information
gcp-cherry-pick-bot[bot] and terrytangyuan committed Jul 18, 2023
1 parent 697f2d4 commit 4f1d876
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 4f1d876

Please sign in to comment.