Skip to content

Commit

Permalink
IBX-9167: Fixed subitems pagination on current page (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
dew326 authored Nov 8, 2024
1 parent 7b2607e commit 65f22bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Pagination = ({ totalCount, itemsPerPage, proximity, activePageIndex, onPa
label={label}
additionalClasses={additionalClasses}
onPageChange={onPageChange}
disabled={paginationDisabled}
disabled={isCurrentPage || paginationDisabled}
/>
);
});
Expand Down

0 comments on commit 65f22bf

Please sign in to comment.