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}
);