From 3ed894015a79df15683548747bee940448fc6c95 Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Sat, 16 May 2026 15:13:19 +0200 Subject: [PATCH] UI: ensure dark text on job detail and job history cards (avoid white-on-light backgrounds)\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- app/components/JobHistory.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/JobHistory.tsx b/app/components/JobHistory.tsx index be2d6ca..866a65c 100644 --- a/app/components/JobHistory.tsx +++ b/app/components/JobHistory.tsx @@ -84,7 +84,7 @@ export default function JobHistory({ ticker }: Props) {

No recent jobs for {ticker}

) : ( jobs.map((j: any) => ( -
+
Job: {j.id}
@@ -105,7 +105,7 @@ export default function JobHistory({ ticker }: Props) {
{selected?.id === j.id && ( -
{JSON.stringify(selected, null, 2)}
+
{JSON.stringify(selected, null, 2)}
)}
))