Skip to content

Commit 15a87fe

Browse files
Hub: sort instances by title
1 parent d783fbf commit 15a87fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Certify.Server/Certify.Server.Hub.Api/Controllers/internal/HubController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public async Task<IActionResult> GetHubManagedInstances()
138138
}
139139
}
140140

141-
return new OkObjectResult(managedInstances.Where(c => c.IsAuthenticated));
141+
return new OkObjectResult(managedInstances.Where(c => c.IsAuthenticated).OrderBy(o => o.Title));
142142
}
143143

144144
/// <summary>

0 commit comments

Comments
 (0)