fix(ui): revert Request ID width to default, tighten Session ID

Drop the explicit size on Request ID so it falls back to the default
width like the other reverted columns. Narrow Session ID from 160px to
120px since its truncated value needs less room
This commit is contained in:
Yuneng Jiang 2026-06-29 21:16:59 -07:00
parent 84d7a32020
commit 256b5aadfb
No known key found for this signature in database

View file

@ -189,7 +189,7 @@ export const createColumns = (sortProps?: LogsSortProps): ColumnDef<LogEntry>[]
{
header: "Session ID",
accessorKey: "session_id",
size: 160,
size: 120,
cell: (info: any) => {
const value = String(info.getValue() || "");
const onSessionClick = info.row.original.onSessionClick;
@ -211,7 +211,6 @@ export const createColumns = (sortProps?: LogsSortProps): ColumnDef<LogEntry>[]
{
header: "Request ID",
accessorKey: "request_id",
size: 110,
cell: (info: any) => (
<Tooltip title={String(info.getValue() || "")}>
<span className="font-mono text-xs max-w-[15ch] truncate block">{String(info.getValue() || "")}</span>