Merge pull request #1121 from ruoti/add-series-ranges

Fixing range generation in series labels
This commit is contained in:
advplyr 2022-11-07 18:27:26 -06:00 committed by GitHub
commit 5e50ac91ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -285,7 +285,7 @@ class LibraryController {
lastRange.end = currentSequence lastRange.end = currentSequence
} }
else { else {
ranges.push({ start: currentSequence, end: currentSequence, isNumber: isNaN(currentSequence) }) ranges.push({ start: currentSequence, end: currentSequence, isNumber: isNumber })
} }
return ranges return ranges