From 67c6b83a783682123b03e4be33a1b98b5ca41b73 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Thu, 19 Feb 2026 20:06:24 -0600 Subject: [PATCH] Fix undefined comments error in BacklogView --- src/components/BacklogView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BacklogView.tsx b/src/components/BacklogView.tsx index 9178f6c..3f9b7fd 100644 --- a/src/components/BacklogView.tsx +++ b/src/components/BacklogView.tsx @@ -83,7 +83,7 @@ function SortableTaskRow({ {task.priority} - {task.comments.length > 0 && ( + {task.comments && task.comments.length > 0 && ( 💬 {task.comments.length} )}