Skip to content

Commit

Permalink
Fix missing key prop
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Oct 15, 2024
1 parent bfef81b commit 3a63bea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/volto-ploneconf/src/components/Views/Talk.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const TalkView = (props) => {
<Grid>
<Grid.Row columns={5}>
{content.speaker.map((el) => (
<Grid.Column>
<Grid.Column key={el['@id']}>
<UniversalLink href={el['@id']}>
{isEmpty(el.image_scales) ? (
<img
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const TalkListingBlockVariation = ({
<>
<div className="items">
{items.map((item) => (
<Segment>
<div className="listing-item" key={item['@id']}>
<Segment key={item['@id']}>
<div className="listing-item">
<ConditionalLink item={item} condition={!isEditMode}>
<Component
componentName="PreviewImage"
Expand Down

0 comments on commit 3a63bea

Please sign in to comment.