From 5241f1805254921282a7986b8cba70453be88d9d Mon Sep 17 00:00:00 2001 From: Deep Koluguri Date: Sat, 27 Jun 2026 16:00:46 -0400 Subject: [PATCH] style: Add explanatory tooltips to factor lens rows --- .../components/dashboard/MarketScreenerPanel.jsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/dashboard/MarketScreenerPanel.jsx b/frontend/src/components/dashboard/MarketScreenerPanel.jsx index f0161ab..3edf9c1 100644 --- a/frontend/src/components/dashboard/MarketScreenerPanel.jsx +++ b/frontend/src/components/dashboard/MarketScreenerPanel.jsx @@ -102,23 +102,23 @@ function FactorProfileCard({ profile, onSelect }) {
-
- Value +
+ Value {pctBar(profile.value)} {profile.value != null ? `${profile.value}th pct` : 'N/A'}
-
- Quality +
+ Quality {pctBar(profile.quality)} {profile.quality != null ? `${profile.quality}th pct` : 'N/A'}
-
- Low-Vol +
+ Low-Vol {pctBar(profile.lowVol)} {profile.lowVol != null ? `${profile.lowVol}th pct` : 'N/A'}
-
- Momentum +
+ Momentum {pctBar(profile.momentum)} {profile.momentum != null ? `${profile.momentum}th pct` : 'N/A'}