Skip to content

Commit

Permalink
fix: peaks pointer vertical alignment in stack mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hamed-musallam committed May 7, 2021
1 parent 8d2bf59 commit ac4fa8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/1d/tool/PeakPointer.jsx
Expand Up @@ -37,7 +37,7 @@ function PeakPointer() {
if (activeSpectrum) {
return verticalAlign.flag
? verticalAlign.stacked
? (activeSpectrum.index + 1) * verticalAlign.value
? activeSpectrum.index * verticalAlign.value
: 0
: 0;
}
Expand Down

0 comments on commit ac4fa8e

Please sign in to comment.