Fixing range generation in series labels

This commit is contained in:
Scott Ruoti 2022-11-07 09:24:48 -05:00
parent eb463a2958
commit 0643116e9b

View File

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