File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 88} from 'reactstrap' ;
99import ReactTooltip from 'react-tooltip' ;
1010import { useTable , useFilters } from 'react-table' ;
11- import { FaSortAlphaUp , FaSortAlphaDown } from 'react-icons/fa' ;
11+ import { FaQuestionCircle } from 'react-icons/fa' ;
1212import { Event } from '../Shared/Tracking' ;
1313
1414import questionList from '../../data' ;
@@ -149,7 +149,16 @@ const Table = () => {
149149 ) ,
150150 } ,
151151 {
152- Header : 'Companies' ,
152+ Header : ( ) => {
153+ return (
154+ < div style = { { whiteSpace : 'nowrap' } } >
155+ Companies{ ' ' }
156+ < span data-tip = "Companies updated as of May 2020" >
157+ < FaQuestionCircle />
158+ </ span >
159+ </ div >
160+ ) ;
161+ } ,
153162 accessor : 'companies' ,
154163 Cell : cellInfo => {
155164 const companies = cellInfo . row . original . companies . map ( company => {
You can’t perform that action at this time.
0 commit comments