1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 05:43:30 +00:00

more do once checks

This commit is contained in:
Kyle Spearrin
2019-05-06 23:07:47 -04:00
parent 5ef4c96ee7
commit 2816e72aa9
4 changed files with 26 additions and 14 deletions

View File

@@ -369,6 +369,10 @@ namespace Bit.App.Pages
private async void CipherOptionsAsync(CipherView cipher)
{
if(!(Page as BaseContentPage).DoOnce())
{
return;
}
var option = await Page.DisplayActionSheet(cipher.Name, AppResources.Cancel, null, "1", "2");
if(option == AppResources.Cancel)
{