From 1600aa5dab90abebce2f67ed4ac643d3531020e7 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 14 Nov 2025 15:00:33 -0500 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=A4=96=20fix:=20add=20truncate=20clas?= =?UTF-8?q?s=20to=20workspace=20name=20span?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Long workspace names in the sidebar were overflowing their container. Added the `truncate` class to the workspace name span to ensure text is properly ellipsized when it exceeds the available space. _Generated with `mux`_ --- src/components/WorkspaceListItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/WorkspaceListItem.tsx b/src/components/WorkspaceListItem.tsx index dda0d48a49..e7b4aac14f 100644 --- a/src/components/WorkspaceListItem.tsx +++ b/src/components/WorkspaceListItem.tsx @@ -156,7 +156,7 @@ const WorkspaceListItemInner: React.FC = ({ /> ) : ( { e.stopPropagation(); startRenaming(); From 4e327cb0980b7031341838a8bb9079581ae45388 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 14 Nov 2025 15:05:48 -0500 Subject: [PATCH 2/2] fix: correct Tailwind class order --- bun.lock | 1 + src/components/WorkspaceListItem.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bun.lock b/bun.lock index 5b0f1e9e10..69d678c0ca 100644 --- a/bun.lock +++ b/bun.lock @@ -1,5 +1,6 @@ { "lockfileVersion": 1, + "configVersion": 0, "workspaces": { "": { "name": "mux", diff --git a/src/components/WorkspaceListItem.tsx b/src/components/WorkspaceListItem.tsx index e7b4aac14f..c1c3add21e 100644 --- a/src/components/WorkspaceListItem.tsx +++ b/src/components/WorkspaceListItem.tsx @@ -156,7 +156,7 @@ const WorkspaceListItemInner: React.FC = ({ /> ) : ( { e.stopPropagation(); startRenaming();