mirror of
https://github.com/bitwarden/mobile
synced 2025-12-19 09:43:27 +00:00
order names in vault. getbyid can now return null if not found (use find instead of get)
This commit is contained in:
@@ -32,7 +32,7 @@ namespace Bit.App.Models.Page
|
||||
{
|
||||
public Folder(IEnumerable<Models.Site> sites, string folderId = null)
|
||||
{
|
||||
var pageSites = sites.Select(s => new Site(s, folderId));
|
||||
var pageSites = sites.Select(s => new Site(s, folderId)).OrderBy(s => s.Name);
|
||||
AddRange(pageSites);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user