Skip to content

Commit

Permalink
fix: Fix tooltip in current frame range type
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrimpCryptid committed Dec 10, 2024
1 parent 3c2b01a commit 6d2b8cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tabs/ScatterPlotTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ export default memo(function ScatterPlotTab(props: ScatterPlotTabProps): ReactEl
{},
markerBaseColor,
// disable hover for all points other than the track when one is selected
selectedTrack === null
selectedTrack === null || rangeType !== PlotRangeType.ALL_TIME
);

const xHistogram: Partial<Plotly.PlotData> = {
Expand Down

0 comments on commit 6d2b8cc

Please sign in to comment.