Skip to content

Commit

Permalink
Defer to incoming time chunk size when < 30
Browse files Browse the repository at this point in the history
  • Loading branch information
katamartin committed May 8, 2024
1 parent 1437c15 commit bf98e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/utils/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const getChunkShapeOverride = (chunkShape, shape, dimensions, axes) => {
if ([axes?.X, axes?.Y].includes(d)) {
return fullSpace ? chunkShape[i] : Math.min(128, chunkShape[i])
} else if (d === axes?.T) {
return Math.min(30, shape[i])
return Math.min(30, chunkShape[i])
} else {
return 1
}
Expand Down

0 comments on commit bf98e4f

Please sign in to comment.