From 2756b1ae8d647af006193788275ee55362f573e0 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Sun, 12 Apr 2026 17:40:37 -0700 Subject: [PATCH] better wrapping around owner label on repeaters --- .../components/repeater/RepeaterOwnerInfoPane.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx b/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx index 793b51b..402c349 100644 --- a/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx +++ b/frontend/src/components/repeater/RepeaterOwnerInfoPane.tsx @@ -1,6 +1,15 @@ import { RepeaterPane, NotFetched, KvRow } from './repeaterPaneShared'; import type { RepeaterOwnerInfoResponse, PaneState } from '../../types'; +function LabeledBlock({ label, value }: { label: string; value: string }) { + return ( +
+ {label} +

{value}

+
+ ); +} + export function OwnerInfoPane({ data, state, @@ -17,8 +26,8 @@ export function OwnerInfoPane({ {!data ? ( ) : ( -
- +
+
)}