diff options
-rw-r--r-- | src/client/views/search/SearchBox.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index b9ada9677..8bf8e3bfa 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -442,11 +442,7 @@ import * as $ from 'jquery'; ); @computed get resFull() { - console.log(`res full $ { - this._numTotalResults <=8 - } - - `) return this._numTotalResults <= 8; + return this._numTotalResults <= 8; } @computed get resultHeight() { |