From 3396a76c9c5b33d0a1a6a955860c67c332fee79f Mon Sep 17 00:00:00 2001 From: Forgotten Date: Fri, 20 Feb 2026 15:10:29 -0600 Subject: [PATCH] fix: consistent label spacing in all properties panes Replace justify-between with fixed w-20 label width in PropertyRow across IssueProperties, AgentProperties, GoalProperties, and ProjectProperties for consistent two-column alignment. Co-Authored-By: Claude Opus 4.6 --- ui/src/components/AgentProperties.tsx | 4 ++-- ui/src/components/GoalProperties.tsx | 4 ++-- ui/src/components/IssueProperties.tsx | 4 ++-- ui/src/components/ProjectProperties.tsx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ui/src/components/AgentProperties.tsx b/ui/src/components/AgentProperties.tsx index 544e58c9..bafd5955 100644 --- a/ui/src/components/AgentProperties.tsx +++ b/ui/src/components/AgentProperties.tsx @@ -23,8 +23,8 @@ const adapterLabels: Record = { function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) { return ( -
- {label} +
+ {label}
{children}
); diff --git a/ui/src/components/GoalProperties.tsx b/ui/src/components/GoalProperties.tsx index 8c8724c9..46210930 100644 --- a/ui/src/components/GoalProperties.tsx +++ b/ui/src/components/GoalProperties.tsx @@ -21,8 +21,8 @@ interface GoalPropertiesProps { function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) { return ( -
- {label} +
+ {label}
{children}
); diff --git a/ui/src/components/IssueProperties.tsx b/ui/src/components/IssueProperties.tsx index de6fad21..66ff4e9e 100644 --- a/ui/src/components/IssueProperties.tsx +++ b/ui/src/components/IssueProperties.tsx @@ -22,8 +22,8 @@ interface IssuePropertiesProps { function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) { return ( -
- {label} +
+ {label}
{children}
); diff --git a/ui/src/components/ProjectProperties.tsx b/ui/src/components/ProjectProperties.tsx index 302668c6..71ba6a2e 100644 --- a/ui/src/components/ProjectProperties.tsx +++ b/ui/src/components/ProjectProperties.tsx @@ -19,8 +19,8 @@ interface ProjectPropertiesProps { function PropertyRow({ label, children }: { label: string; children: React.ReactNode }) { return ( -
- {label} +
+ {label}
{children}
);