Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NEXT VERSION

## v1.13.4 (2023-03-15)

- fix: allow any react node to be used as column title

## v1.13.3 (2023-03-13)

- fix: pass extra sorting props to custom SortIndicator component
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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",
Expand Down
2 changes: 1 addition & 1 deletion src/Column.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Column.propTypes = {
/**
* Title for the column header
*/
title: PropTypes.string,
title: PropTypes.node,
/**
* Data key for the column cell, could be "a.b.c"
*/
Expand Down