From 1fc180b68ec70ed7294ee95ae264be58553a038b Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Tue, 27 Sep 2022 22:24:39 -0700 Subject: [PATCH] Limit max width of FR legend tooltip labels --- web/components/charts/generic-charts.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/components/charts/generic-charts.tsx b/web/components/charts/generic-charts.tsx index 2bb5e089..05c26a42 100644 --- a/web/components/charts/generic-charts.tsx +++ b/web/components/charts/generic-charts.tsx @@ -88,12 +88,12 @@ const Legend = (props: { className?: string; items: LegendItem[] }) => {
    {items.map((item) => (
  1. - + - {item.label} + {item.label} {item.value}
  2. @@ -275,7 +275,7 @@ export const MultiValueHistoryChart = (props: { {mouseState && ( {fmtX(mouseState.p[0])} - + )}