From 5d464f4477ae8a68b003787b5bfaa58701d5e3d8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 25 Nov 2017 13:49:54 -0500 Subject: [PATCH] increment index alter comparison, resolves #185 --- src/App/Pages/Vault/VaultEditCipherPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Vault/VaultEditCipherPage.cs b/src/App/Pages/Vault/VaultEditCipherPage.cs index a84c6f6b5..36c782a51 100644 --- a/src/App/Pages/Vault/VaultEditCipherPage.cs +++ b/src/App/Pages/Vault/VaultEditCipherPage.cs @@ -264,12 +264,12 @@ namespace Bit.App.Pages option = "Other"; } - i++; if(option == brand) { CardBrandCell.Picker.SelectedIndex = i; break; } + i++; } }