From 054509449e2d784bae2a81b742a99fc3f0a0913d Mon Sep 17 00:00:00 2001 From: Chad Elliott Date: Mon, 23 Dec 2024 09:00:00 -0600 Subject: [PATCH] Reversed the tooltip order for the sentiment chart. --- web-ui/src/pages/PulseReportPage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-ui/src/pages/PulseReportPage.jsx b/web-ui/src/pages/PulseReportPage.jsx index 4fc4415ca..24926e5a4 100644 --- a/web-ui/src/pages/PulseReportPage.jsx +++ b/web-ui/src/pages/PulseReportPage.jsx @@ -467,7 +467,7 @@ const PulseReportPage = () => { return (

{label}

- {payload.map(p => { + {payload.slice().reverse().map(p => { return
{p.value} {p.name.props.children}
;