Scenes: Make repeat panels respect maxPerRow (#84497)

This commit is contained in:
kay delaney
2024-03-15 09:48:29 +00:00
committed by GitHub
parent ebf455d107
commit e5faeb324d

View File

@@ -196,7 +196,7 @@ function useLayoutStyle(direction: RepeatDirection, itemCount: number, maxPerRow
if (direction === 'h') {
const rowCount = Math.ceil(itemCount / maxPerRow);
const columnCount = Math.ceil(itemCount / rowCount);
const columnCount = Math.min(itemCount, maxPerRow);
return css({
display: 'grid',