no upper on autofill section headers
This commit is contained in:
parent
2f2d85576f
commit
09412f0b78
|
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue