From 77314d4b8de8f142e2d3a40d79499c40517e9319 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 14 Jun 2019 17:40:21 -0400 Subject: [PATCH] cleanup search page for ios --- src/App/Pages/Vault/CiphersPage.xaml | 12 ++++++------ src/App/Pages/Vault/CiphersPage.xaml.cs | 12 +++++------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/src/App/Pages/Vault/CiphersPage.xaml b/src/App/Pages/Vault/CiphersPage.xaml index 71f29893e..0906a1d69 100644 --- a/src/App/Pages/Vault/CiphersPage.xaml +++ b/src/App/Pages/Vault/CiphersPage.xaml @@ -15,13 +15,11 @@ - - - - + @@ -31,12 +29,14 @@ VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" Spacing="0" - Padding="0"> + Padding="0" + x:Name="_titleLayout"> + Clicked="BackButton_Clicked" + x:Name="_backButton" /> ("deviceActionService"); } @@ -121,12 +122,9 @@ namespace Bit.App.Pages } } - private async void Close_Clicked(object sender, System.EventArgs e) + private void Close_Clicked(object sender, EventArgs e) { - if(DoOnce()) - { - await Navigation.PopModalAsync(); - } + GoBack(); } } }