From 09412f0b78b7d434191915ce83589a4edd2bf9f8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 25 Nov 2017 23:33:50 -0500 Subject: [PATCH] no upper on autofill section headers --- src/App/Pages/Vault/VaultAutofillListCiphersPage.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/App/Pages/Vault/VaultAutofillListCiphersPage.cs b/src/App/Pages/Vault/VaultAutofillListCiphersPage.cs index 2ca338b83..0407a9890 100644 --- a/src/App/Pages/Vault/VaultAutofillListCiphersPage.cs +++ b/src/App/Pages/Vault/VaultAutofillListCiphersPage.cs @@ -178,7 +178,7 @@ namespace Bit.App.Pages .ToList(); if(others?.Any() ?? false) { - autofillGroupings.Add(new Section(others, AppResources.Items)); + autofillGroupings.Add(new Section(others, AppResources.Items, false)); } } else @@ -191,7 +191,7 @@ namespace Bit.App.Pages if(normalLogins?.Any() ?? false) { autofillGroupings.Add(new Section(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(fuzzyLogins, - AppResources.PossibleMatchingItems)); + AppResources.PossibleMatchingItems, false)); } }