diff --git a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx index 2f8794d66..c08f8bd29 100644 --- a/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx +++ b/src/renderer/components/item-list/item-grid-list/item-grid-list.tsx @@ -404,15 +404,19 @@ const ListComponent = memo((props: ListChildComponentProps) => { } for (let i = startIndex; i <= stopIndex + columnCountToAdd; i += 1) { - items.push( -
- -
, - ); + if (i < data.length) { + items.push( +
+ +
, + ); + } else { + items.push(null); + } } return (