1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-03 04:48:03 +02:00

no upper on autofill section headers

This commit is contained in:
Kyle Spearrin 2017-11-25 23:33:50 -05:00
parent 2f2d85576f
commit 09412f0b78

View File

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