Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- [#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
- [#728](https://github.com/plotly/dash-table/pull/728) Fix copy/paste on readonly cells
- [#724](https://github.com/plotly/dash-table/pull/724) Fix `active_cell` docstring: clarify optional nature of the `row_id` nested prop

## [4.6.2] - 2020-04-01
### Changed
Expand Down
5 changes: 3 additions & 2 deletions src/dash-table/dash/DataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ export const defaultProps = {

export const propTypes = {
/**
* The row and column indices and IDs of the currently active cell.
* The row and column indices and IDs of the currently active cell.
* `row_id` is only returned if the data rows have an `id` key.
*/
active_cell: PropTypes.exact({
row: PropTypes.number,
Expand Down Expand Up @@ -1299,4 +1300,4 @@ DataTable.persistenceTransforms = {
};

DataTable.defaultProps = defaultProps;
DataTable.propTypes = propTypes;
DataTable.propTypes = propTypes;