UI: add JobHistory component and render on stock detail page\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

This commit is contained in:
2026-05-16 14:48:58 +02:00
parent 669b792045
commit 2585734f6a
2 changed files with 98 additions and 0 deletions
+4
View File
@@ -2,6 +2,7 @@ import { useState, useEffect } from "react";
import { useLoaderData, useNavigate, useLocation } from "react-router";
import TradingViewChart from "../components/TradingViewChart";
import Navbar from "../components/Navbar";
import JobHistory from "../components/JobHistory";
import type { TradingDecision, AnalystReport, DebateRound } from "../types/agents";
export const meta = () => [{ title: "Stock Detail - AITrader" }];
@@ -295,6 +296,9 @@ export default function StockDetail() {
)}
</div>
)}
{/* Job history */}
<JobHistory ticker={ticker} />
</div>
<div className="mt-6 bg-white rounded-xl shadow-lg p-6 border border-gray-200">