Skip to content
Merged
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
3 changes: 3 additions & 0 deletions ui/scripts/accounts.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -1561,6 +1561,9 @@
description: this.path
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand Down
3 changes: 3 additions & 0 deletions ui/scripts/accountsWizard.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -92,6 +92,9 @@
if (this.level === 0)
rootDomainId = this.id;
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand Down
9 changes: 9 additions & 0 deletions ui/scripts/configuration.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -573,6 +573,9 @@
description: this.path
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand DownExpand Up@@ -1220,6 +1223,9 @@
description: this.path
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand DownExpand Up@@ -1893,6 +1899,9 @@
description: this.path
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand Down
3 changes: 3 additions & 0 deletions ui/scripts/events.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -301,6 +301,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
6 changes: 6 additions & 0 deletions ui/scripts/instances.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -236,6 +236,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand DownExpand Up@@ -1758,6 +1761,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
9 changes: 9 additions & 0 deletions ui/scripts/network.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -656,6 +656,9 @@
description: this.path
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand DownExpand Up@@ -830,6 +833,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand DownExpand Up@@ -5254,6 +5260,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
3 changes: 3 additions & 0 deletions ui/scripts/projects.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -734,6 +734,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
3 changes: 3 additions & 0 deletions ui/scripts/regions.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -377,6 +377,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
3 changes: 3 additions & 0 deletions ui/scripts/sharedFunctions.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -483,6 +483,9 @@ var addGuestNetworkDialog = {
}
});
}
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: items
});
Expand Down
6 changes: 6 additions & 0 deletions ui/scripts/storage.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -467,6 +467,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand DownExpand Up@@ -1743,6 +1746,9 @@
});
}
}
array1.sort(function(a, b) {
return a.description.localeCompare(b.description);
});
args.response.success({
data: array1
});
Expand Down
27 changes: 24 additions & 3 deletions ui/scripts/system.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -7958,7 +7958,10 @@
description: this.name
});
});

items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
});
Expand DownExpand Up@@ -13246,6 +13249,9 @@
description: this.name
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
Expand DownExpand Up@@ -13461,7 +13467,10 @@
description: this.name
});
});

items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
});
Expand DownExpand Up@@ -14059,7 +14068,10 @@
description: this.name
});
});

items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
});
Expand DownExpand Up@@ -14614,6 +14626,9 @@
description: this.name
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
Expand DownExpand Up@@ -15501,6 +15516,9 @@
description: this.name
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
Expand DownExpand Up@@ -15831,6 +15849,9 @@
description: this.name
});
});
items.sort(function(a, b) {
return a.description.localeCompare(b.description);
});

args.response.success({
data: items
Expand Down