pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

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

readd right click to open card modal

Pas 52cc9754 b1376694

+7
+7
src/components/media/MediaCard.tsx
··· 268 268 } 269 269 }; 270 270 271 + const handleCardContextMenu = (e: React.MouseEvent) => { 272 + e.preventDefault(); 273 + handleShowDetails(); 274 + }; 275 + 271 276 const content = ( 272 277 <> 273 278 <MediaCardContent {...props} onShowDetails={handleShowDetails} /> ··· 284 289 e.preventDefault(); 285 290 } 286 291 }} 292 + onContextMenu={handleCardContextMenu} 287 293 > 288 294 {content} 289 295 </span> ··· 299 305 props.closable ? "hover:cursor-default" : "", 300 306 )} 301 307 onClick={handleCardClick} 308 + onContextMenu={handleCardContextMenu} 302 309 > 303 310 {content} 304 311 </Link>