diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-08 12:19:28 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-08 12:19:28 -0500 |
| commit | 1b68d5a89abdd8a7db4d4762a3ee44c3363e9a74 (patch) | |
| tree | 8308876ffb2c6e41d74e403fd3532a35107fadc4 /src/client/views/search/SearchBox.tsx | |
| parent | 7d6dd8470384d345771ed67c88c9b15e2b333a6b (diff) | |
cleaned up searchBox. fixed parentdocument context menu placement.
Diffstat (limited to 'src/client/views/search/SearchBox.tsx')
| -rw-r--r-- | src/client/views/search/SearchBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index 2f28ebf76..dd1ac7421 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -353,7 +353,8 @@ export class SearchBox extends React.Component { </div> <div className="searchBox-results" onScroll={this.resultsScrolled} style={{ display: this._resultsOpen ? "flex" : "none", - height: this.resFull ? "auto" : this.resultHeight, overflow: this.resFull ? "auto" : "visible" + height: this.resFull ? "auto" : this.resultHeight, + overflow: "visibile" // this.resFull ? "auto" : "visible" }} ref={this.resultsRef}> {this._visibleElements} </div> |
