Skip to content

Commit

Permalink
add props
Browse files Browse the repository at this point in the history
  • Loading branch information
labradford committed May 10, 2024
1 parent 0061cf9 commit 4e29e2a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/compounds/Item/Item.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import ItemLoading from './ItemLoading'
import NextLink from '../../components/NextLink/NextLink'
import './item.scss'

const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownDescriptionExtended, href, isLoading, item, orientation, titleLink, withButtonLink,
withTitleLink, width }) => {
const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownDescriptionExtended, truncatedLength, href, isLoading, item, orientation, titleLink,
withButtonLink, withTitleLink, width }) => {
if (isLoading) {
return (
<>
Expand Down Expand Up @@ -69,6 +69,7 @@ const Item = ({ buttonLink, buttonProps, markdownDescriptionTruncated, markdownD
item={item}
markdownDescriptionTruncated={markdownDescriptionTruncated}
markdownDescriptionExtended={markdownDescriptionExtended}
truncatedLength={truncatedLength}
orientation={orientation}
titleLink={link}
withButtonLink={withButtonLink}
Expand Down

0 comments on commit 4e29e2a

Please sign in to comment.