Skip to content

Commit

Permalink
fix: convert range analysis from Pixel to PPM
Browse files Browse the repository at this point in the history
the bug was introduced in the commit #2ce8ef9

close #3378
  • Loading branch information
hamed-musallam committed Feb 25, 2025
1 parent f7c4124 commit da0f838
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/1d/BrushTracker1D.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ export function BrushTracker1D({ children }) {
dispatchPreferences({
type: 'ANALYZE_SPECTRA',
payload: {
start: brushData.startX,
end: brushData.endX,
start: brushDataInPPM.startX,
end: brushDataInPPM.endX,
nucleus: activeTab,
},
});
Expand Down

0 comments on commit da0f838

Please sign in to comment.