mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-04 08:50:18 +01:00
no upper on autofill section headers
This commit is contained in:
parent
2f2d85576f
commit
09412f0b78
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user