mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
Added fuzzy matches to autofill listing page. Allow autofilling from main vault search page when arriving from autofill service
This commit is contained in:
@@ -115,11 +115,10 @@ namespace Bit.iOS.Extension
|
||||
{
|
||||
var loginService = Resolver.Resolve<ILoginService>();
|
||||
var logins = await loginService.GetAllAsync(_context.UrlString);
|
||||
var loginModels = logins;
|
||||
_tableItems = logins.Select(s => new LoginViewModel(s))
|
||||
_tableItems = logins?.Item1.Select(s => new LoginViewModel(s))
|
||||
.OrderBy(s => s.Name)
|
||||
.ThenBy(s => s.Username)
|
||||
.ToList();
|
||||
.ToList() ?? new List<LoginViewModel>();
|
||||
}
|
||||
|
||||
public IEnumerable<LoginViewModel> TableItems { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user