forked from github/plane
fix: unique key for each cell
This commit is contained in:
parent
f82b876379
commit
54c7246ad3
@ -168,7 +168,10 @@ export const SpreadsheetColumn: React.FC<Props> = (props) => {
|
|||||||
|
|
||||||
<div className="h-full min-w-[8rem] w-full">
|
<div className="h-full min-w-[8rem] w-full">
|
||||||
{issues?.map((issue) => (
|
{issues?.map((issue) => (
|
||||||
<div className="h-11 flex items-center px-4 py-2.5 border-b-[0.5px] border-custom-border-200">
|
<div
|
||||||
|
key={`${property}-${issue.id}`}
|
||||||
|
className="h-11 flex items-center px-4 py-2.5 border-b-[0.5px] border-custom-border-200"
|
||||||
|
>
|
||||||
{property === "state" ? (
|
{property === "state" ? (
|
||||||
<SpreadsheetStateColumn
|
<SpreadsheetStateColumn
|
||||||
disabled={disableUserActions}
|
disabled={disableUserActions}
|
||||||
|
Loading…
Reference in New Issue
Block a user