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
1 changed files with 3 additions and 3 deletions

View File

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