alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
replace thumbnailUrl with imageUrl
author
Wesley Finck
date
6 months ago
(Jan 5, 2026, 4:27 PM -0800)
commit
9c1078b0
9c1078b0c9a8f936305b0f55e68e38b4ca782de6
parent
b65f7471
b65f7471a6e08f6980929cefd7c1580348fe8c92
+2
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
webapp
features
cards
components
addCardToModal
AddCardToModalContent.tsx
cardToBeAddedPreview
CardToBeAddedPreview.tsx
+1
-1
src/webapp/features/cards/components/addCardToModal/AddCardToModalContent.tsx
View file
Reviewed
···
138
138
<CardToBeAddedPreview
139
139
url={props.url}
140
140
title={props.cardContent?.title}
141
141
-
thumbnailUrl={props.cardContent?.imageUrl}
141
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
View file
Reviewed
···
14
14
15
15
interface Props {
16
16
url: string;
17
17
-
thumbnailUrl?: string;
17
17
+
imageUrl?: string;
18
18
title?: string;
19
19
}
20
20