Skip to content

Commit

Permalink
added key on version list items
Browse files Browse the repository at this point in the history
  • Loading branch information
nzambello committed Jun 21, 2019
1 parent 975ed42 commit e210ac5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/manage/Controlpanels/VersionOverview.jsx
Expand Up @@ -12,7 +12,9 @@ const VersionOverview = () => {
const voltoVersion = packageJSON.version;

return (
<List>{voltoVersion && <List.Item>Volto {voltoVersion}</List.Item>}</List>
<List>
{voltoVersion && <List.Item key="volto">Volto {voltoVersion}</List.Item>}
</List>
);
};

Expand Down

0 comments on commit e210ac5

Please sign in to comment.