diff --git a/src/App/Pages/Vault/CiphersPage.xaml.cs b/src/App/Pages/Vault/CiphersPage.xaml.cs index 14f0eb61e..e742ddd34 100644 --- a/src/App/Pages/Vault/CiphersPage.xaml.cs +++ b/src/App/Pages/Vault/CiphersPage.xaml.cs @@ -63,7 +63,7 @@ namespace Bit.App.Pages { return; } - _vm.Search(e.NewTextValue, 300); + _vm.Search(e.NewTextValue, 1000); } private void SearchBar_SearchButtonPressed(object sender, EventArgs e) diff --git a/src/App/Pages/Vault/CiphersPageViewModel.cs b/src/App/Pages/Vault/CiphersPageViewModel.cs index bf33e7d17..d144a2305 100644 --- a/src/App/Pages/Vault/CiphersPageViewModel.cs +++ b/src/App/Pages/Vault/CiphersPageViewModel.cs @@ -22,7 +22,6 @@ namespace Bit.App.Pages private readonly IDeviceActionService _deviceActionService; private CancellationTokenSource _searchCancellationTokenSource; - private string _searchText; private bool _showNoData; private bool _showList; @@ -42,12 +41,6 @@ namespace Bit.App.Pages public Func Filter { get; set; } public string AutofillUrl { get; set; } - public string SearchText - { - get => _searchText; - set => SetProperty(ref _searchText, value); - } - public bool ShowNoData { get => _showNoData;