Skip to content

Commit dbdc437

Browse files
committed
Auto merge of rust-lang#12913 - alex-semenyuk:ui_fix, r=xFrednet
Filter from first typed symbol on gh-pages Cosmetic fix Don't see the reason that now filter on gh-pages is starting work after 3 symbols typing so remove this condition Before: https://github.com/rust-lang/rust-clippy/assets/5480441/fa3b780e-30dc-4fdb-bf2d-5a99337eca4e After: https://github.com/rust-lang/rust-clippy/assets/5480441/977e15af-8be5-462c-a703-f10c05e6109c changelog: gh-pages
2 parents acdf564 + 3f9c587 commit dbdc437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/gh-pages/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@
397397
$scope.bySearch = function (lint, index, array) {
398398
let searchStr = $scope.search;
399399
// It can be `null` I haven't missed this value
400-
if (searchStr == null || searchStr.length < 3) {
400+
if (searchStr == null) {
401401
return true;
402402
}
403403
searchStr = searchStr.toLowerCase();

0 commit comments

Comments
 (0)