Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-13231-fixed-1767087157441.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Fixed
---

IAM Assigned Entities - Increase MAX_ITEMS_TO_RENDER to 25 ([#13231](https://github.com/linode/manager/pull/13231))
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const AssignedEntities = ({

// We don't need to send all items to the TruncatedList component for performance reasons,
// since past a certain count they will be hidden within the row.
const MAX_ITEMS_TO_RENDER = 15;
const MAX_ITEMS_TO_RENDER = 25;
const entitiesToRender = sortedEntities.slice(0, MAX_ITEMS_TO_RENDER);
const totalCount = sortedEntities.length;

Expand Down