From bac5afa6470e411a711cd6722aa5fcadc04e419d Mon Sep 17 00:00:00 2001 From: dotta Date: Tue, 7 Apr 2026 17:47:58 -0500 Subject: [PATCH] Remove "None" text from empty Blocking and Sub-issues property rows When there are no blocking issues or sub-issues, show nothing (or just the "+ Add sub-issue" button) instead of displaying "None" text. Co-Authored-By: Paperclip --- ui/src/components/IssueProperties.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/ui/src/components/IssueProperties.tsx b/ui/src/components/IssueProperties.tsx index 937e4628..bb555cce 100644 --- a/ui/src/components/IssueProperties.tsx +++ b/ui/src/components/IssueProperties.tsx @@ -846,15 +846,13 @@ export function IssueProperties({ ))} - ) : ( - None - )} + ) : null}
- {childIssues.length > 0 ? ( - childIssues.map((child) => ( + {childIssues.length > 0 + ? childIssues.map((child) => ( )) - ) : ( - None - )} + : null} {onAddSubIssue ? (