Browse Source
Merge pull request #1125 from meriadec/fix/duplicate-key
Add key in release notes listing
master
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/modals/ReleaseNotes/ReleaseNotesBody.js
|
|
@ -77,7 +77,7 @@ class ReleaseNotesBody extends PureComponent<Props, State> { |
|
|
|
|
|
|
|
if (notes) { |
|
|
|
return notes.map(note => ( |
|
|
|
<Notes mb={6}> |
|
|
|
<Notes mb={6} key={note.tag_name}> |
|
|
|
<Title>{t('app:releaseNotes.version', { versionNb: note.tag_name })}</Title> |
|
|
|
<Markdow>{note.body}</Markdow> |
|
|
|
</Notes> |
|
|
|