Skip to content

Commit

Permalink
fix: modal coverd popover bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KT-core committed Sep 5, 2024
1 parent 15b2fbd commit f9799c9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/components/Chart/LineAreaChart.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@ const AreaChart = ({ type, data, timeRange }) => {
}

return chartData && data ? (
<Popover content={<DelayLineChart data={data} timeRange={timeRange} type={type} />} title="">
<Popover
content={<DelayLineChart data={data} timeRange={timeRange} type={type} />}
title=""
zIndex={1060}
>
<Line data={chartData} options={options} />
</Popover>
) : (
Expand Down

0 comments on commit f9799c9

Please sign in to comment.