Skip to content

Commit

Permalink
Merge pull request #2939 from leeagustin/DataTable-whitespace-fix
Browse files Browse the repository at this point in the history
Fixes bug with whitespace on DataTable when merge_duplicate_header=True
  • Loading branch information
T4rk1n authored Oct 17, 2024
2 parents cac1276 + c0cd75b commit 94dd398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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](https://semver.org/).

## Fixed

- [#2939](https://github.com/plotly/dash/pull/2939) Fixes bug with whitespace on DataTable when `merge_duplicate_header=True`. Fixes [#2870](https://github.com/plotly/dash/issues/2870)
- [#2994](https://github.com/plotly/dash/pull/2994) Keep generated doc-string order for shape or exact props. Fixes [#2990](https://github.com/plotly/dash/issues/2990)
- [#3011](https://github.com/plotly/dash/pull/3011) Fixed an exception error caused by assigning `None` to array properties with `exact` or `shape` element types. Fixes [#3010](https://github.com/plotly/dash/issues/3010)
- [#2991](https://github.com/plotly/dash/pull/2991) Add support for URL decoding of the search parameter for pages.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ export default class ControlledTable extends PureComponent<ControlledTableProps>
if (fixed_columns || fixed_rows) {
const widths = Array.from(
r1c1.querySelectorAll(
'table.cell-table > tbody > tr:first-of-type > *'
'table.cell-table > tbody > tr:last-of-type > *'
)
).map(c => c.getBoundingClientRect().width);

Expand Down

0 comments on commit 94dd398

Please sign in to comment.