Skip to content

Commit

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

Signed-off-by: Yuan Tang <[email protected]>
Signed-off-by: Jimmy Neville <[email protected]>
  • Loading branch information
terrytangyuan authored and Jneville0815 committed Jul 18, 2023
1 parent 7efce56 commit 02ebb2a
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 02ebb2a

Please sign in to comment.