Fix bug: Update TableRow when card updated in dialog
This commit is contained in:
parent
e9e8818738
commit
a704dde733
2 changed files with 1 additions and 2 deletions
|
@ -254,7 +254,7 @@ class TableComponent extends React.Component<Props, State> {
|
|||
|
||||
const tableRow = (
|
||||
<TableRow
|
||||
key={card.id}
|
||||
key={card.id + card.updateAt}
|
||||
ref={tableRowRef}
|
||||
boardTree={boardTree}
|
||||
card={card}
|
||||
|
|
|
@ -51,7 +51,6 @@ class TableRow extends React.Component<Props, State> {
|
|||
return (
|
||||
<div
|
||||
className='TableRow octo-table-row'
|
||||
key={card.id}
|
||||
>
|
||||
|
||||
{/* Name / title */}
|
||||
|
|
Loading…
Reference in a new issue