fix(edge/update): show environment count when more than 100 [EE-6424] (#11917)

pull/11579/merge
Chaim Lev-Ari 2024-06-15 00:37:45 +03:00 committed by GitHub
parent 51f9977885
commit a28bd349ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import { EdgeTypes, EnvironmentId } from '@/react/portainer/environments/types';
export function useEnvironments(environmentsIds: Array<EnvironmentId>) {
const environmentsQuery = useEnvironmentList(
{ endpointIds: environmentsIds, types: EdgeTypes },
{ endpointIds: environmentsIds, types: EdgeTypes, pageLimit: 0 },
{
enabled: environmentsIds.length > 0,
}