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]>
  • Loading branch information
terrytangyuan authored and tesla59 committed Dec 16, 2023
1 parent 9efe960 commit 7b928da
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 7b928da

Please sign in to comment.