Skip to content

Commit

Permalink
fixes #2533
Browse files Browse the repository at this point in the history
  • Loading branch information
walterbender committed Sep 4, 2020
1 parent c61b9a9 commit 6cc4a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/pitchtimematrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@ function PitchTimeMatrix() {

if (i === 0) {
this._sortedRowMap.push(0);
} else if (i > 0 && obj[1] === last(this.rowLabels)) {
} else if (i > 0 && obj[1] !== "hertz" && obj[1] === last(this.rowLabels)) {
console.debug(
"skipping " + obj[1] + " " + last(this.rowLabels)
);
Expand Down

0 comments on commit 6cc4a00

Please sign in to comment.