diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-06-28 02:06:53 -0400 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-06-28 02:06:53 -0400 |
| commit | fe418ace1873b81fa3d2c622d3b414dcacbe7b56 (patch) | |
| tree | 1751236c335fc503502de0ea6867f6e043c0e9ac /client/table/citations.table.js | |
| parent | 3d2967573738154b4dd50bdd4a600aff42f276ae (diff) | |
more options... add download csv link and search
Diffstat (limited to 'client/table/citations.table.js')
| -rw-r--r-- | client/table/citations.table.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/client/table/citations.table.js b/client/table/citations.table.js index ef5ab0b5..c1c71906 100644 --- a/client/table/citations.table.js +++ b/client/table/citations.table.js @@ -1,11 +1,9 @@ import React, { Component } from 'react' -import { bindActionCreators } from 'redux' -import { connect } from 'react-redux' import { ReactTabulator } from 'react-tabulator' import { saveAs } from 'file-saver' import { Loader } from '../common' -import { toArray, toTuples, domainFromUrl } from '../util' +import { domainFromUrl } from '../util' export const citationsColumns = [ { title: 'Title', field: 'title', sorter: 'string' }, @@ -111,7 +109,7 @@ class CitationsTable extends Component { value={this.state.q} onChange={e => this.updateFilter(e.target.value)} className='q' - placeholder='Enter text to search citations...' + placeholder='Enter text to search citations' /> <span className='download' onClick={() => this.download()}>Download CSV</span> </div> |
