diff options
| author | Adam Malczewski <[email protected]> | 2026-06-25 10:32:12 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-25 11:00:54 +0900 |
| commit | 4ac993df443db0ecbcdf7c13e39c987b8d1ef28b (patch) | |
| tree | bbdc8be0311934200f7c3f5b9456632221d6107a | |
| parent | 38db3827870960f466be89afbc49f91238d46144 (diff) | |
| download | dispatch-web-4ac993df443db0ecbcdf7c13e39c987b8d1ef28b.tar.gz dispatch-web-4ac993df443db0ecbcdf7c13e39c987b8d1ef28b.zip | |
feat(tabs): show full title in tab hover tooltip
The conversation tab's title span was truncated with a static
'Double-click to rename' tooltip. Replace the static title with the
full tab.title so hovering reveals the complete conversation title
(the truncate class still clips the visible label).
| -rw-r--r-- | src/features/tabs/ui/TabBar.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/tabs/ui/TabBar.svelte b/src/features/tabs/ui/TabBar.svelte index f783412..7ec2101 100644 --- a/src/features/tabs/ui/TabBar.svelte +++ b/src/features/tabs/ui/TabBar.svelte @@ -135,7 +135,7 @@ class="min-w-0 flex-1 cursor-pointer truncate text-left" role="button" tabindex="-1" - title="Double-click to rename" + title={tab.title} ondblclick={(e) => { e.stopPropagation(); startRename(tab); |
