This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

replace thumbnailUrl with imageUrl

+2 -2
+1 -1
src/webapp/features/cards/components/addCardToModal/AddCardToModalContent.tsx
··· 138 138 <CardToBeAddedPreview 139 139 url={props.url} 140 140 title={props.cardContent?.title} 141 - thumbnailUrl={props.cardContent?.imageUrl} 141 + imageUrl={props.cardContent?.imageUrl} 142 142 /> 143 143 <AddCardActions 144 144 note={isMyCard ? note : cardStatus.data.card?.note?.text}
+1 -1
src/webapp/features/cards/components/cardToBeAddedPreview/CardToBeAddedPreview.tsx
··· 14 14 15 15 interface Props { 16 16 url: string; 17 - thumbnailUrl?: string; 17 + imageUrl?: string; 18 18 title?: string; 19 19 } 20 20