diff --git a/src/App/Pages/Vault/AddEditPage.xaml b/src/App/Pages/Vault/AddEditPage.xaml
index 70df83ec2..80f0236d6 100644
--- a/src/App/Pages/Vault/AddEditPage.xaml
+++ b/src/App/Pages/Vault/AddEditPage.xaml
@@ -501,6 +501,7 @@
Text="{Binding Cipher.Notes}"
StyleClass="box-value" />
+
diff --git a/src/App/Pages/Vault/AddEditPage.xaml.cs b/src/App/Pages/Vault/AddEditPage.xaml.cs
index 974bd58be..4a596e410 100644
--- a/src/App/Pages/Vault/AddEditPage.xaml.cs
+++ b/src/App/Pages/Vault/AddEditPage.xaml.cs
@@ -58,6 +58,7 @@ namespace Bit.App.Pages
{
ToolbarItems.Add(_moreItem);
}
+ _vm.ShowNotesSeparator = true;
}
_typePicker.ItemDisplayBinding = new Binding("Key");
diff --git a/src/App/Pages/Vault/AddEditPageViewModel.cs b/src/App/Pages/Vault/AddEditPageViewModel.cs
index 1323478b7..1dd4a988b 100644
--- a/src/App/Pages/Vault/AddEditPageViewModel.cs
+++ b/src/App/Pages/Vault/AddEditPageViewModel.cs
@@ -24,6 +24,7 @@ namespace Bit.App.Pages
private readonly IAuditService _auditService;
private readonly IMessagingService _messagingService;
private CipherView _cipher;
+ private bool _showNotesSeparator;
private bool _showPassword;
private bool _showCardCode;
private int _typeSelectedIndex;
@@ -224,6 +225,11 @@ namespace Bit.App.Pages
get => _cipher;
set => SetProperty(ref _cipher, value, additionalPropertyNames: _additionalCipherProperties);
}
+ public bool ShowNotesSeparator
+ {
+ get => _showNotesSeparator;
+ set => SetProperty(ref _showNotesSeparator, value);
+ }
public bool ShowPassword
{
get => _showPassword;
diff --git a/src/App/Styles/iOS.xaml b/src/App/Styles/iOS.xaml
index b1fcf6472..4001bf876 100644
--- a/src/App/Styles/iOS.xaml
+++ b/src/App/Styles/iOS.xaml
@@ -18,6 +18,8 @@
ApplyToDerivedTypes="True">
+