ClaimList: fix missing key (#737)
## Issue From the Draggable PR, the draggables retained the key but regular lists lost it.
This commit is contained in:
parent
b72127411c
commit
3338f9142c
1 changed files with 1 additions and 0 deletions
|
@ -162,6 +162,7 @@ export default function ClaimList(props: Props) {
|
||||||
const getClaimPreview = (uri: string, index: number, draggableProvided?: any) => (
|
const getClaimPreview = (uri: string, index: number, draggableProvided?: any) => (
|
||||||
<ClaimPreview
|
<ClaimPreview
|
||||||
uri={uri}
|
uri={uri}
|
||||||
|
key={uri}
|
||||||
indexInContainer={index}
|
indexInContainer={index}
|
||||||
type={type}
|
type={type}
|
||||||
active={activeUri && uri === activeUri}
|
active={activeUri && uri === activeUri}
|
||||||
|
|
Loading…
Reference in a new issue