AllenFang / AllenFang/react-bootstrap-table
Sorting arrow icons missing in the table headres
- Lenguaje dominante
- JavaScript
- Estrellas
- 2.2k
- Forks
- 761
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Hi Alan,
After updating to bootstrap 4.3.1 sorting arrow icons in the table headers disappeared. Is there a specific version of bootstrap 4 i need to use or am I missing something?
I'm using react-bootstrap-table 1.1.3
Thank you in advance.
```
const columns = [{
dataField: 'id',
text: 'ID',
sort: true
}, {
dataField: 'applicationName',
text: 'Application',
sort: true
}, {
dataField: 'collectionName',
text: 'Collection',
sort: true
}, {
dataField: 'licenseType',
text: 'License',
sort: true
}, {
dataField: 'cost',
text: 'Cost',
sort: true
}, {
dataField: 'approvers',
text: 'Approvers',
sort: true
}];
const defaultSorted = [{
dataField: 'applicationName',
order: 'desc'
}];
class TestTable extends Component {
render() {
return (
TestTable
Add/Remove Approvers
);
}
}
export default TestTable;
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.