Merge pull request #7921 from catherineluse/az-order

Availability zones are in order
This commit is contained in:
Catherine Luse 2023-01-19 12:37:20 -07:00 committed by GitHub
commit 42bf373067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -362,7 +362,9 @@ export default {
});
if (data.length > 0) {
return data[0].AvailabilityZones;
return data[0].AvailabilityZones.sort((a, b) => {
return a - b;
});
}
return [];