From 26d0077bb848e0f5f94931577eec3f37b90ab1b7 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 12 Jun 2019 08:12:55 -0400 Subject: [PATCH] delay search to 500 ms --- src/App/Pages/Vault/CiphersPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Vault/CiphersPage.xaml.cs b/src/App/Pages/Vault/CiphersPage.xaml.cs index 544a41daf..ead54f8c9 100644 --- a/src/App/Pages/Vault/CiphersPage.xaml.cs +++ b/src/App/Pages/Vault/CiphersPage.xaml.cs @@ -68,7 +68,7 @@ namespace Bit.App.Pages { return; } - _vm.Search(e.NewTextValue, 300); + _vm.Search(e.NewTextValue, 500); } private void SearchBar_SearchButtonPressed(object sender, EventArgs e)