diff --git a/src/ui/components/ConditionalBuilder.tsx b/src/ui/components/ConditionalBuilder.tsx index 92801ae..a3873a1 100644 --- a/src/ui/components/ConditionalBuilder.tsx +++ b/src/ui/components/ConditionalBuilder.tsx @@ -52,13 +52,14 @@ export function ConditionalBuilder(props: ConditionalBuilderProps): VNode { }; return ( -
+
{/* IF row */}
- IF + IF +

Quality Rules

{rules.length} rule{rules.length !== 1 ? 's' : ''} @@ -193,6 +193,8 @@ export function QualityRuleEditor(props: QualityRuleEditorProps): VNode {
diff --git a/src/ui/components/QualityScorecard.tsx b/src/ui/components/QualityScorecard.tsx index 79d5d01..36dc11f 100644 --- a/src/ui/components/QualityScorecard.tsx +++ b/src/ui/components/QualityScorecard.tsx @@ -40,13 +40,13 @@ export function QualityScorecard(props: QualityScorecardProps): VNode { breakdowns.sort((a, b) => a.passRate - b.passRate); return ( -
+

Quality Scorecard

{/* Score badge */} -
+
+

Explain Plan

-
-
diff --git a/src/ui/components/QueryMetricsPanel.tsx b/src/ui/components/QueryMetricsPanel.tsx index dfc03dd..7ab3bf5 100644 --- a/src/ui/components/QueryMetricsPanel.tsx +++ b/src/ui/components/QueryMetricsPanel.tsx @@ -36,16 +36,16 @@ export function QueryMetricsPanel(props: QueryMetricsPanelProps): VNode { const displayed = viewAll ? sorted : sorted.slice(0, 5); return ( -
+

Query Metrics

-
+ diff --git a/src/ui/components/RelationshipConfig.tsx b/src/ui/components/RelationshipConfig.tsx index ac4eac6..0774bb6 100644 --- a/src/ui/components/RelationshipConfig.tsx +++ b/src/ui/components/RelationshipConfig.tsx @@ -1,4 +1,4 @@ -/** +/** * Configuration component for lookup relationship fields. * * Provides a textarea for entering lookup record IDs (one per line) @@ -41,8 +41,7 @@ export function RelationshipConfig(props: RelationshipConfigProps): VNode {
-