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)

Signed-off-by: Yuan Tang <[email protected]>
  • Loading branch information
terrytangyuan authored Jul 18, 2023
1 parent 15eeb30 commit 462dffc
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 462dffc

Please sign in to comment.