1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

adjust search minimum down to 2 characters

This commit is contained in:
Kyle Spearrin
2016-12-06 22:54:00 -05:00
parent b5f3a1254b
commit b4d41c6808
2 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@
};
$scope.searchSites = function () {
if (!$scope.searchText || $scope.searchText.length < 3) {
if (!$scope.searchText || $scope.searchText.length < 2) {
return;
}