mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-10-30 02:12:39 +00:00
increased profiles limit
This commit is contained in:
@@ -34,7 +34,7 @@ const Network = () => {
|
||||
const { loading: loadingProfile, error: errorProfile, data: apProfiles } = useQuery(
|
||||
GET_ALL_PROFILES(),
|
||||
{
|
||||
variables: { customerId, type: 'equipment_ap' },
|
||||
variables: { customerId, type: 'equipment_ap', limit: 100 },
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
@@ -78,11 +78,11 @@ const ProfileDetails = () => {
|
||||
variables: { id },
|
||||
});
|
||||
const { data: ssidProfiles } = useQuery(GET_ALL_PROFILES(), {
|
||||
variables: { customerId, type: 'ssid' },
|
||||
variables: { customerId, type: 'ssid', limit: 100 },
|
||||
});
|
||||
|
||||
const { data: radiusProfiles } = useQuery(GET_ALL_PROFILES(), {
|
||||
variables: { customerId, type: 'radius' },
|
||||
variables: { customerId, type: 'radius', limit: 100 },
|
||||
});
|
||||
|
||||
const [updateProfile] = useMutation(UPDATE_PROFILE);
|
||||
|
||||
@@ -23,7 +23,7 @@ const AutoProvision = () => {
|
||||
const { data: dataProfile, loading: loadingProfile, error: errorProfile } = useQuery(
|
||||
GET_ALL_PROFILES(),
|
||||
{
|
||||
variables: { customerId, type: 'equipment_ap' },
|
||||
variables: { customerId, type: 'equipment_ap', limit: 100 },
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user