From db6a37bedea1028e96f722c3f51c06eda42cf1e0 Mon Sep 17 00:00:00 2001 From: regeter <2320305+regeter@users.noreply.github.com> Date: Tue, 20 Jan 2026 09:23:11 -0800 Subject: [PATCH] fix: increase dynamic column width to see seconds in timestamps --- src/LogTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LogTable.js b/src/LogTable.js index 715a76a9..ba326d3d 100644 --- a/src/LogTable.js +++ b/src/LogTable.js @@ -306,7 +306,7 @@ function LogTable(props) { stdColumns.push({ Header: elems[elems.length - 1], accessor: dotPath === ".error" ? "error" : dotPath, - width: columnRegularWidth, + width: columnLargeWidth, className: "logtable-cell", Cell: ({ cell }) => { const value = cell.value;