mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-03 04:07:32 +02:00
fix(v1): add key to versions.map in versions.js (#2087)
This commit is contained in:
parent
d592e3c470
commit
381ed59416
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ function Versions(props) {
|
||||||
{versions.map(
|
{versions.map(
|
||||||
version =>
|
version =>
|
||||||
version !== latestVersion && (
|
version !== latestVersion && (
|
||||||
<tr>
|
<tr key={version}>
|
||||||
<th>{version}</th>
|
<th>{version}</th>
|
||||||
<td>
|
<td>
|
||||||
{/* You are supposed to change this href where appropriate
|
{/* You are supposed to change this href where appropriate
|
||||||
|
|
Loading…
Add table
Reference in a new issue