From 48c51173a142b652933cac98674f268a954c5a9d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 30 May 2019 17:24:41 -0400 Subject: [PATCH] CipherListOptions on autofill page --- src/App/Pages/Vault/AutofillCiphersPageViewModel.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/App/Pages/Vault/AutofillCiphersPageViewModel.cs b/src/App/Pages/Vault/AutofillCiphersPageViewModel.cs index 56b61285c..b69c31cb5 100644 --- a/src/App/Pages/Vault/AutofillCiphersPageViewModel.cs +++ b/src/App/Pages/Vault/AutofillCiphersPageViewModel.cs @@ -150,16 +150,10 @@ namespace Bit.App.Pages private async void CipherOptionsAsync(CipherView cipher) { - if(!(Page as BaseContentPage).DoOnce()) + if((Page as BaseContentPage).DoOnce()) { - return; + await AppHelpers.CipherListOptions(Page, cipher); } - var option = await Page.DisplayActionSheet(cipher.Name, AppResources.Cancel, null, "1", "2"); - if(option == AppResources.Cancel) - { - return; - } - // TODO: process options } } }