diff --git a/web/src/app/page.tsx b/web/src/app/page.tsx index dd0e0ab..41fb0a4 100644 --- a/web/src/app/page.tsx +++ b/web/src/app/page.tsx @@ -890,16 +890,19 @@ function TicketWorkbenchContent() { density === "compact" ? "min-h-7" : "min-h-8" )} style={{ display: "table-row" }}>
- {availableColumns.filter((c) => c.visible).map((col) => ( + {availableColumns.filter((c) => c.visible).map((col, idx, arr) => (
-
handleColumnResize(col.key, e)} - /> + {/* Resize handle: drags the boundary, resizes the column to the LEFT */} + {idx > 0 && ( +
handleColumnResize(arr[idx - 1].key, e)} + /> + )} {col.label}