1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-03 09:03:35 +00:00

upper section titles for autofill listing

This commit is contained in:
Kyle Spearrin
2017-12-22 13:33:18 -05:00
parent 35bc94f4bd
commit 45ab6d47de
2 changed files with 30 additions and 9 deletions

View File

@@ -178,7 +178,7 @@ namespace Bit.App.Pages
.ToList();
if(others?.Any() ?? false)
{
autofillGroupings.Add(new Section<AutofillCipher>(others, AppResources.Items, false));
autofillGroupings.Add(new Section<AutofillCipher>(others, AppResources.Items));
}
}
else
@@ -191,7 +191,7 @@ namespace Bit.App.Pages
if(normalLogins?.Any() ?? false)
{
autofillGroupings.Add(new Section<AutofillCipher>(normalLogins,
AppResources.MatchingItems, false));
AppResources.MatchingItems));
}
var fuzzyLogins = ciphers?.Item2
@@ -202,7 +202,7 @@ namespace Bit.App.Pages
if(fuzzyLogins?.Any() ?? false)
{
autofillGroupings.Add(new Section<AutofillCipher>(fuzzyLogins,
AppResources.PossibleMatchingItems, false));
AppResources.PossibleMatchingItems));
}
}