fix(ui): scroll-shadow bottom fade + hide tasks row when nothing active
- ScrollShadow: 1px subpixel tolerance so bottom fade clears at scroll end on Retina (fractional scrollTop was keeping data-bottom-scroll stuck) - StatusRow: hide tasks indicator when no in-progress/pending todos remain
This commit is contained in:
@@ -200,7 +200,7 @@ export const StatusRow: React.FC<StatusRowProps> = ({
|
||||
return { active, left };
|
||||
}, [visibleTodos]);
|
||||
|
||||
const hasTodoContent = showTodos && visibleTodos.length > 0;
|
||||
const hasTodoContent = showTodos && statusSummary.left > 0;
|
||||
const hasAssistantContent = showAssistantStatus && (
|
||||
isWorking ||
|
||||
Boolean(wasAborted) ||
|
||||
|
||||
Reference in New Issue
Block a user