diff --git a/packages/manager/.changeset/pr-13231-fixed-1767087157441.md b/packages/manager/.changeset/pr-13231-fixed-1767087157441.md new file mode 100644 index 00000000000..a67f1bdbeb2 --- /dev/null +++ b/packages/manager/.changeset/pr-13231-fixed-1767087157441.md @@ -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)) diff --git a/packages/manager/src/features/IAM/Users/UserRoles/AssignedEntities.tsx b/packages/manager/src/features/IAM/Users/UserRoles/AssignedEntities.tsx index 375c5fe2808..cb8b603dd70 100644 --- a/packages/manager/src/features/IAM/Users/UserRoles/AssignedEntities.tsx +++ b/packages/manager/src/features/IAM/Users/UserRoles/AssignedEntities.tsx @@ -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;