We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0424c9e commit 925fc66Copy full SHA for 925fc66
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## NEXT VERSION
4
5
+## v1.13.4 (2023-03-15)
6
+
7
+- fix: allow any react node to be used as column title
8
9
## v1.13.3 (2023-03-13)
10
11
- fix: pass extra sorting props to custom SortIndicator component
package.json
@@ -1,6 +1,6 @@
1
{
"name": "react-base-table",
- "version": "1.13.3",
+ "version": "1.13.4",
"description": "a react table component to display large data set with high performance and flexibility",
"main": "lib/index.js",
"module": "es/index.js",
src/Column.js
@@ -37,7 +37,7 @@ Column.propTypes = {
37
/**
38
* Title for the column header
39
*/
40
- title: PropTypes.string,
+ title: PropTypes.node,
41
42
* Data key for the column cell, could be "a.b.c"
43
0 commit comments