mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Filter from first typed symbol
This commit is contained in:
parent
48686adf48
commit
3f9c5872b9
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@
|
|||
$scope.bySearch = function (lint, index, array) {
|
||||
let searchStr = $scope.search;
|
||||
// It can be `null` I haven't missed this value
|
||||
if (searchStr == null || searchStr.length < 3) {
|
||||
if (searchStr == null) {
|
||||
return true;
|
||||
}
|
||||
searchStr = searchStr.toLowerCase();
|
||||
|
|
Loading…
Reference in a new issue