From 5b54e7d468d1112fb4a4ef4ae9d6ebd2441cce84 Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Tue, 27 Sep 2022 22:25:37 -0700 Subject: [PATCH] Limit max width of FR legend tooltip labels (#948) --- 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])} - + )}