File tree 2 files changed +4
-2
lines changed 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6
6
### Fixed
7
7
- [ #722 ] ( https://github.com/plotly/dash-table/pull/722 ) Fix a bug where row height is misaligned when using fixed_columns and/or fixed_rows
8
8
- [ #728 ] ( https://github.com/plotly/dash-table/pull/728 ) Fix copy/paste on readonly cells
9
+ - [ #724 ] ( https://github.com/plotly/dash-table/pull/724 ) Fix ` active_cell ` docstring: clarify optional nature of the ` row_id ` nested prop
9
10
10
11
## [ 4.6.2] - 2020-04-01
11
12
### Changed
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ export const defaultProps = {
110
110
111
111
export const propTypes = {
112
112
/**
113
- * The row and column indices and IDs of the currently active cell.
113
+ * The row and column indices and IDs of the currently active cell.
114
+ * `row_id` is only returned if the data rows have an `id` key.
114
115
*/
115
116
active_cell : PropTypes . exact ( {
116
117
row : PropTypes . number ,
@@ -1299,4 +1300,4 @@ DataTable.persistenceTransforms = {
1299
1300
} ;
1300
1301
1301
1302
DataTable . defaultProps = defaultProps ;
1302
- DataTable . propTypes = propTypes ;
1303
+ DataTable . propTypes = propTypes ;
You can’t perform that action at this time.
0 commit comments