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.

cleanup for editing mode

Pas 66566a1c 5c69f4c1

+5 -3
+5 -3
src/components/media/MediaCard.tsx
··· 79 79 const [, copyToClipboard] = useCopyToClipboard(); 80 80 const [hasCopied, setHasCopied] = useState(false); 81 81 82 + if (closable) { 83 + setOverlayVisible(false); 84 + } 85 + 82 86 if (media.year) { 83 87 dotListContent.push(media.year.toFixed()); 84 88 } ··· 285 289 <DotList className="text-xs" content={dotListContent} /> 286 290 </div> 287 291 288 - {/* More Info */} 289 - {!overlayVisible ? ( 292 + {!overlayVisible && !closable ? ( 290 293 <div className="absolute bottom-0 translate-y-1 right-1"> 291 294 <button 292 295 className="media-more-button p-2" ··· 303 306 </button> 304 307 </div> 305 308 ) : null} 306 - {/* End Overlay */} 307 309 </Flare.Child> 308 310 </Flare.Base> 309 311 </div>