Skip to content

Commit

Permalink
fix: event classes space (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiclasNorin authored Mar 5, 2024
1 parent 3a80df7 commit 8e3d271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/js/Module/Event/Components/EventItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function getDateBadge(event, type) {
}

const EventItem = ({ event, displayFields, cardStyle, imageRatio }) => (
<a className={"c-card c-card--action c-card--event " + cardStyle + "c-card--image-" + imageRatio} href={event.permalink} style={{ textAlign: 'center', height: '100%' }}>
<a className={"c-card c-card--action c-card--event " + cardStyle + " c-card--image-" + imageRatio} href={event.permalink} style={{ textAlign: 'center', height: '100%' }}>
{displayFields.includes('image') && event.image_url && (
<div className="c-card__image c-card__image--secondary">
{displayFields.includes('dateBadge') ? (
Expand Down

0 comments on commit 8e3d271

Please sign in to comment.