Skip to content

Commit

Permalink
Fixes a bug in my earlier merged pull request related to collapsed
Browse files Browse the repository at this point in the history
series. Yaxes with a single referenced series that was collapsed
remained visible.
  • Loading branch information
rosco54 committed Mar 8, 2024
1 parent 0b95446 commit e4aca64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/Scales.js
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ export default class Scales {
if (unassignedSeriesIndices) {
let si = unassignedSeriesIndices[0]
unassignedSeriesIndices.shift()
axisSeriesMap[lastUnassignedYAxis].push([si])
axisSeriesMap[lastUnassignedYAxis].push(si)
seriesYAxisReverseMap[si] = lastUnassignedYAxis
} else {
break
Expand Down

0 comments on commit e4aca64

Please sign in to comment.