File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 22
33## NEXT VERSION
44
5+ ## v1.13.3 (2023-03-13)
6+
7+ - fix: pass extra sorting props to custom SortIndicator component
8+
59## v1.13.2 (2022-05-14)
610
711- fix: error imported by optimization render task
Original file line number Diff line number Diff line change 11{
22 "name" : " react-base-table" ,
3- "version" : " 1.13.2 " ,
3+ "version" : " 1.13.3 " ,
44 "description" : " a react table component to display large data set with high performance and flexibility" ,
55 "main" : " lib/index.js" ,
66 "module" : " es/index.js" ,
Original file line number Diff line number Diff line change @@ -502,6 +502,7 @@ class BaseTable extends React.PureComponent {
502502 { cell }
503503 { column . sortable && (
504504 < SortIndicator
505+ sorting = { sorting }
505506 sortOrder = { sortOrder }
506507 className = { cn ( this . _prefixClass ( 'sort-indicator' ) , {
507508 [ this . _prefixClass ( 'sort-indicator--descending' ) ] : sortOrder === SortOrder . DESC ,
You can’t perform that action at this time.
0 commit comments