AllenFang / react-bootstrap-table

A Bootstrap table built with React.js
https://allenfang.github.io/react-bootstrap-table/
MIT License
2.24k stars 782 forks source link

Lines missing from table #1999

Open bngo97 opened 6 years ago

bngo97 commented 6 years ago

My table renders with missing lines. this happens with vertical and horizontal lines on different tables.

My code: <BootstrapTable data={this.state.filteredData}> <TableHeaderColumn dataField="none" dataFormat={indexN} isKey={true} hidden>Index</TableHeaderColumn> {Object.entries(this.state.data[0]).map(function([key,value]) { return <TableHeaderColumn width='175' dataField={key}>{key}</TableHeaderColumn> })} </BootstrapTable>

screen shot 2018-08-02 at 10 54 49 am