aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEleanor Eng <eleanor_eng@brown.edu>2019-03-16 17:34:14 -0400
committerEleanor Eng <eleanor_eng@brown.edu>2019-03-16 17:34:14 -0400
commit2411f3700c19cea1b2ac52e32ecd64c6e7343284 (patch)
tree624cda2694d5e4f61f868aa5b35a1ccda0fd280e /src
parent02f0311a868decd92af53d1ffbb6f03bdaa912db (diff)
commit to pull
Diffstat (limited to 'src')
-rw-r--r--src/client/views/ContextMenu.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/ContextMenu.tsx b/src/client/views/ContextMenu.tsx
index 73bad477b..2396ce762 100644
--- a/src/client/views/ContextMenu.tsx
+++ b/src/client/views/ContextMenu.tsx
@@ -73,9 +73,9 @@ export class ContextMenu extends React.Component {
return (
<div className="contextMenu-cont" style={{ left: this._pageX, top: this._pageY, display: this._display }} ref={this.ref}>
<div>
- <i className="fa fa-search"> </i>
- {/* <FontAwesomeIcon icon="search" size="sm" /> */}
- <input className="contextMenu-item" type="text" placeholder="Search . . ." value={this._searchString} onChange={this.onChange}></input>
+ {/* <i className="fa fa-search"> </i> */}
+ <FontAwesomeIcon icon="search" size="lg" />
+ <input className="contextMenu-item" type="text" placeholder="&#xf002; Search . . ." value={this._searchString} onChange={this.onChange} ></input>
</div>
{this._items.filter(prop => {
return prop.description.toLowerCase().indexOf(this._searchString.toLowerCase()) !== -1;