From 29e8c6f06aabbf8c8934e062ce8275ccad28e8d5 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Mon, 25 May 2026 05:22:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E7=BA=A6=E8=A1=A8=E5=AD=90=E8=A1=8C?= =?UTF-8?q?=20Mkt/Liq=20=E6=94=B9=E4=B8=BA=E7=9C=9F=E5=AE=9E=E7=9B=98?= =?UTF-8?q?=E5=8F=A3=E4=BB=B7=E6=A0=BC=E5=92=8C=E4=BB=B7=E5=B7=AE=E6=B5=81?= =?UTF-8?q?=E5=8A=A8=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/dashboard/ScanTerminalDashboard.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/components/dashboard/ScanTerminalDashboard.tsx b/frontend/components/dashboard/ScanTerminalDashboard.tsx index 221a648a..acb243f2 100644 --- a/frontend/components/dashboard/ScanTerminalDashboard.tsx +++ b/frontend/components/dashboard/ScanTerminalDashboard.tsx @@ -386,8 +386,8 @@ function CityGroupedTable({ {temp(best.current_temp || best.current_max_so_far, best.temp_symbol)} {temp(best.deb_prediction, best.temp_symbol)} - {pct(best.market_probability ?? best.market_event_probability)} - {money(best.book_liquidity ?? best.market_liquidity ?? best.volume)} + {formatPrice(best.midpoint, best.ask, best.bid)} + {formatSpreadLiquidity(best.spread, best.book_liquidity ?? best.market_liquidity)} {isExpanded && buckets.map((row) => ( - {row.target_label || "--"} + {row.target_label || "--"} {pct(row.edge_percent)} {temp(row.current_temp || row.current_max_so_far, row.temp_symbol)} {temp(row.deb_prediction, row.temp_symbol)} - {pct(row.market_probability ?? row.market_event_probability)} - {money(row.book_liquidity ?? row.market_liquidity ?? row.volume)} + {formatPrice(row.midpoint, row.ask, row.bid)} + {formatSpreadLiquidity(row.spread, row.book_liquidity ?? row.market_liquidity)} ))}