@@ -640,6 +640,7 @@ class BootstrapTable extends Component {
640
640
enableShowOnlySelected = { enableShowOnlySelected }
641
641
columns = { columns }
642
642
searchPlaceholder = { this . props . searchPlaceholder }
643
+ exportCSVText = { this . props . options . exportCSVText }
643
644
onAddRow = { this . handleAddRow }
644
645
onDropRow = { this . handleDropRow }
645
646
onSearch = { this . handleSearch }
@@ -798,7 +799,8 @@ BootstrapTable.propTypes = {
798
799
nextPage : PropTypes . string ,
799
800
firstPage : PropTypes . string ,
800
801
lastPage : PropTypes . string ,
801
- searchDelayTime : PropTypes . number
802
+ searchDelayTime : PropTypes . number ,
803
+ exportCSVText : PropTypes . text
802
804
} ) ,
803
805
fetchInfo : PropTypes . shape ( {
804
806
dataTotalSize : PropTypes . number
@@ -864,7 +866,8 @@ BootstrapTable.defaultProps = {
864
866
nextPage : Const . NEXT_PAGE ,
865
867
firstPage : Const . FIRST_PAGE ,
866
868
lastPage : Const . LAST_PAGE ,
867
- searchDelayTime : undefined
869
+ searchDelayTime : undefined ,
870
+ exportCSVText : Const . EXPORT_CSV_TEXT
868
871
} ,
869
872
fetchInfo : {
870
873
dataTotalSize : 0
0 commit comments