Skip to content

Commit 6e8f50d

Browse files
authored
Merge pull request #2596 from alexjercan/fix/dash_table-missing-key-prop
fix(dash-table): added key prop to markdown cell 🐛
2 parents 1471774 + cb15816 commit 6e8f50d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5-
## UNRELEASED
5+
6+
## [UNRELEASED]
67

78
## Fixed
89

10+
- [#2596](https://github.com/plotly/dash/pull/2596) Fix react-dom throwing unique key prop error for markdown table, fix [#1433](https://github.com/plotly/dash/issues/1433)
911
- [#2589](https://github.com/plotly/dash/pull/2589) CSS for input elements not scoped to Dash application
1012
- [#2599](https://github.com/plotly/dash/pull/2599) Fix background callback cancel inputs used in multiple callbacks and mixed cancel inputs across pages.
1113

components/dash-table/src/dash-table/derived/cell/contents.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ class Contents {
229229
case CellType.Markdown:
230230
return (
231231
<CellMarkdown
232+
key={`column-${columnIndex}`}
232233
active={active}
233234
applyFocus={applyFocus}
234235
className={className}

0 commit comments

Comments
 (0)