mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-21 05:18:51 +01:00
Add key
This commit is contained in:
parent
4646859177
commit
dba921a3fd
1 changed files with 3 additions and 1 deletions
|
@ -181,7 +181,9 @@ function Search(props) {
|
||||||
return 0;
|
return 0;
|
||||||
})
|
})
|
||||||
.map((link) => (
|
.map((link) => (
|
||||||
<Link to={link.to}>{link.label}</Link>
|
<Link to={link.to} key={link.type}>
|
||||||
|
{link.label}
|
||||||
|
</Link>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue