File tree Expand file tree Collapse file tree
assets/js/dashboard/stats/graph Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ All notable changes to this project will be documented in this file.
3939- Fixed top bar not scrolling horizontally on mobile
4040- Fixed incline/decline percentages not showing in top stats in comparison mode
4141- Fixed issue with timestamps being rendered incorrectly in segment menus and modals for some timezones
42+ - Fixed main graph being clipped when the browser's root font size is smaller than the default 16px
4243
4344## v3.2.0 - 2026-01-16
4445
Original file line number Diff line number Diff line change @@ -547,7 +547,11 @@ export const MainGraphContainer = React.forwardRef<
547547 { children : ReactNode }
548548> ( ( props , ref ) => {
549549 return (
550- < div className = "relative mt-4 mb-3 h-92 w-full" ref = { ref } >
550+ < div
551+ className = "relative mt-4 mb-3 w-full"
552+ style = { { height : `${ height } px` } }
553+ ref = { ref }
554+ >
551555 { props . children }
552556 </ div >
553557 )
You can’t perform that action at this time.
0 commit comments