diff options
author | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-28 02:02:40 -0700 |
---|---|---|
committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-04-28 02:02:40 -0700 |
commit | e4b7b54eecc307ec52f6105f92c3d87449458641 (patch) | |
tree | 74c2580cc8e02d1b5017ff99244e08b18a66ae12 /src/client/views/nodes/QueryBox.tsx | |
parent | 15ee40ea8da5140ba5db62185b4a26d36bf6255e (diff) |
nested collection view now in search box, search item doc type cast over stacking view, but with bugs
Diffstat (limited to 'src/client/views/nodes/QueryBox.tsx')
-rw-r--r-- | src/client/views/nodes/QueryBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/QueryBox.tsx b/src/client/views/nodes/QueryBox.tsx index eb57b98d2..fb47a01d7 100644 --- a/src/client/views/nodes/QueryBox.tsx +++ b/src/client/views/nodes/QueryBox.tsx @@ -34,7 +34,7 @@ export class QueryBox extends ViewBoxAnnotatableComponent<FieldViewProps, QueryD const dragging = !SelectionManager.GetIsDragging() ? "" : "-dragging"; return <div className={`queryBox${dragging}`} onWheel={(e) => e.stopPropagation()} > - <SearchBox Document={this.props.Document} /> + <SearchBox Document={this.props.Document} /> </div >; } } |