File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 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/).
66### Fixed
77- [ #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
88- [ #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
910
1011## [ 4.6.2] - 2020-04-01
1112### Changed
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ export const defaultProps = {
110110
111111export const propTypes = {
112112 /**
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.
114115 */
115116 active_cell : PropTypes . exact ( {
116117 row : PropTypes . number ,
@@ -1299,4 +1300,4 @@ DataTable.persistenceTransforms = {
12991300} ;
13001301
13011302DataTable . defaultProps = defaultProps ;
1302- DataTable . propTypes = propTypes ;
1303+ DataTable . propTypes = propTypes ;
You can’t perform that action at this time.
0 commit comments