Skip to content

Commit 0fba154

Browse files
authored
fix(TaskListV2): revert overflowX hidden that hides task text labels (#1215)
The overflowX="hidden" added in #1211 clips task subject text to nothing when TaskItems are nested inside MessageResponse (the └ prefix constrains available width). The icon survives at 2 chars but the text gets fully clipped, leaving orphaned ✓/■ without any label. Reverts the overflowX="hidden" portion of #1211.
1 parent f102b60 commit 0fba154

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/TaskListV2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ function TaskItem(t0) {
361361
}
362362
let t12;
363363
if ($[34] !== t10 || $[35] !== t11) {
364-
t12 = <Box flexDirection="column" width="100%" overflowX="hidden">{t10}{t11}</Box>;
364+
t12 = <Box flexDirection="column" width="100%">{t10}{t11}</Box>;
365365
$[34] = t10;
366366
$[35] = t11;
367367
$[36] = t12;

0 commit comments

Comments
 (0)