Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/src/pages/Shell.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ export default function Shell() {

{/* Session tabs */}
{sessions.length > 0 && (
<div className="flex items-center gap-1.5 mb-3 overflow-x-auto pb-1">
<div className="flex flex-wrap items-center gap-1.5 mb-3 pb-1">
{sessions.map((s) => {
const isActive = s.sessionId === activeSessionId;
const label = s.label || s.cwd?.split('/').pop() || shortId(s.sessionId);
Expand All @@ -781,7 +781,7 @@ export default function Shell() {
title={`${s.label || s.cwd || shortId(s.sessionId)} — ${formatAge(s.createdAt)} old`}
>
<TerminalIcon size={12} className="shrink-0" />
<span className="truncate max-w-[140px]">{label}</span>
<span className="min-w-0 break-all">{label}</span>
<span className="text-[10px] opacity-60 shrink-0">{formatAge(s.createdAt)}</span>
Comment thread
atomantic marked this conversation as resolved.
<button
onClick={(e) => { e.stopPropagation(); killOtherSession(s.sessionId); }}
Expand Down