From dd9e26e5d82f331d543890a4b46f0a6c4605147d Mon Sep 17 00:00:00 2001 From: christn Date: Mon, 27 May 2024 13:33:01 +0800 Subject: [PATCH] Add grey border to 2YP tooltip --- .../components/TwoYearProjection/TwoYearProjectionChart.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mainsite/components/TwoYearProjection/TwoYearProjectionChart.tsx b/src/mainsite/components/TwoYearProjection/TwoYearProjectionChart.tsx index 47d988b1..9a335673 100644 --- a/src/mainsite/components/TwoYearProjection/TwoYearProjectionChart.tsx +++ b/src/mainsite/components/TwoYearProjection/TwoYearProjectionChart.tsx @@ -690,7 +690,11 @@ const SupplyChart: FC = ({ ); const table = `${rows.join("")}
`; - return `
${header}${table}
`; + return ` +
+
${header}${table}
+
+ `; }, }, };