handle manual grid rows on paginated lists

This commit is contained in:
jeffvli
2025-11-19 16:07:36 -08:00
parent c691c349dd
commit 485fe8085c
3 changed files with 6 additions and 0 deletions
@@ -19,6 +19,7 @@ export const SongListPaginatedGrid = forwardRef<any, SongListPaginatedGridProps>
{
gap = 'md',
itemsPerPage = 100,
itemsPerRow,
query = {
sortBy: SongListSort.NAME,
sortOrder: SortOrder.ASC,
@@ -60,6 +61,7 @@ export const SongListPaginatedGrid = forwardRef<any, SongListPaginatedGridProps>
currentPage={currentPage}
data={data || []}
gap={gap}
itemsPerRow={itemsPerRow}
itemType={LibraryItem.SONG}
ref={ref}
rows={rows}