(text)
| 217 | }, |
| 218 | |
| 219 | formatSearchBar(text){ |
| 220 | const {filterText} = this.state; |
| 221 | return ( |
| 222 | <div className="_search" onClick={() => this.toggleOpen(true)}> |
| 223 | {filterText ? <div className="_text"></div> |
| 224 | : <div className="_text">{text}</div>} |
| 225 | <input className='_input' ref='userInput' value={filterText} |
| 226 | type='text' onChange={(e) => this.handleSearch(e.target.value)}/> |
| 227 | </div> |
| 228 | ); |
| 229 | }, |
| 230 | |
| 231 | formatMultiInput(tags){ |
| 232 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…