Skip to content

Commit 1d11646

Browse files
nesquenaclaude
andcommitted
fix(ui): update queue hide tooltip to reference queue pill, not titlebar
This PR removes the titlebar queue badge (_syncQueueTitlebar), but the hide button on the queue card still tells the user to "click the titlebar badge to show again" — which no longer exists in the titlebar slot (subtitle slot now shows message count). Update the tooltip and adjacent comment to reference the queue pill, which is the actual affordance that re-shows a hidden queue card via _updateQueuePill(). Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
1 parent 534341d commit 1d11646

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

static/ui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,10 +1200,10 @@ function _renderQueueChips(sid){
12001200
clearBtn.onclick=()=>{q.length=0;_saveAndRefresh();};
12011201
actions.appendChild(mergeBtn);
12021202
actions.appendChild(clearBtn);
1203-
// Hide button — collapses flyout entirely; titlebar "N queued" re-shows it
1203+
// Hide button — collapses flyout entirely; queue pill re-shows it
12041204
const hideBtn=document.createElement('button');
12051205
hideBtn.className='queue-card-icon-btn';
1206-
hideBtn.title='Hide queue (click the titlebar badge to show again)';
1206+
hideBtn.title='Hide queue (click the queue pill to show again)';
12071207
hideBtn.setAttribute('aria-label','Hide queue panel');
12081208
hideBtn.innerHTML=li('chevron-down',14);
12091209
hideBtn.onclick=()=>{

0 commit comments

Comments
 (0)