Files
maestro/web
wangjia 3fc19e47c4 fix(web): 任务树/父任务下拉对异常 depth/id 加固,避免整页崩溃
renderParentOptions 的 '· '.repeat(depth-1) 在 depth=0 时抛 RangeError(Invalid count value)、
renderNode 的 t.id.slice(-6) 在 id 缺失时抛 TypeError——任一都会让看板整页崩。
改为 repeat(Math.max(0,(depth||1)-1)) 与 String(t.id||'').slice。
(node:vm + 最小 DOM harness 复现并验证)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-13 09:40:55 +08:00
..