diff --git a/src/App/Pages/Settings/SettingsPage/SettingsPage.xaml b/src/App/Pages/Settings/SettingsPage/SettingsPage.xaml index 717e77787..91e82992c 100644 --- a/src/App/Pages/Settings/SettingsPage/SettingsPage.xaml +++ b/src/App/Pages/Settings/SettingsPage/SettingsPage.xaml @@ -13,6 +13,7 @@ + - - diff --git a/src/App/Pages/Settings/SettingsPage/SettingsPageListGroup.cs b/src/App/Pages/Settings/SettingsPage/SettingsPageListGroup.cs index 5b85c7771..a57118667 100644 --- a/src/App/Pages/Settings/SettingsPage/SettingsPageListGroup.cs +++ b/src/App/Pages/Settings/SettingsPage/SettingsPageListGroup.cs @@ -4,7 +4,8 @@ namespace Bit.App.Pages { public class SettingsPageListGroup : List { - public SettingsPageListGroup(List groupItems, string name, bool doUpper = true) + public SettingsPageListGroup(List groupItems, string name, bool doUpper = true, + bool first = false) { AddRange(groupItems); if(string.IsNullOrWhiteSpace(name)) @@ -19,8 +20,10 @@ namespace Bit.App.Pages { Name = name; } + First = first; } + public bool First { get; set; } public string Name { get; set; } } } diff --git a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs index c79283a16..4177b8ab2 100644 --- a/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs +++ b/src/App/Pages/Settings/SettingsPage/SettingsPageViewModel.cs @@ -339,7 +339,7 @@ namespace Bit.App.Pages }; GroupedItems.ResetWithRange(new List { - new SettingsPageListGroup(autofillItems, AppResources.Autofill, doUpper), + new SettingsPageListGroup(autofillItems, AppResources.Autofill, doUpper, true), new SettingsPageListGroup(manageItems, AppResources.Manage, doUpper), new SettingsPageListGroup(securityItems, AppResources.Security, doUpper), new SettingsPageListGroup(accountItems, AppResources.Account, doUpper),