Ionosphere.tv
3
fork

Configure Feed

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

fix: restore talk page link in concordance sidebar player

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6 -1
+6 -1
apps/ionosphere/src/app/concordance/IndexContent.tsx
··· 618 618 className="text-neutral-500 hover:text-neutral-200 transition-colors shrink-0 hidden md:block" 619 619 title={widePlayer ? "Collapse player" : "Expand player"} 620 620 >{widePlayer ? "\u2192" : "\u2190"}</button> 621 - <span className="truncate">{selectedTalk.title}</span> 621 + <a href={`/talks/${selectedTalk.rkey}`} className="truncate hover:text-neutral-100 transition-colors">{selectedTalk.title}</a> 622 + <a 623 + href={`/talks/${selectedTalk.rkey}`} 624 + className="text-neutral-500 hover:text-neutral-200 transition-colors shrink-0 text-xs" 625 + title="Open full talk page" 626 + >&#x2197;</a> 622 627 </div> 623 628 <div className="shrink-0 bg-black overflow-hidden"> 624 629 <VideoPlayer videoUri={selectedTalk.videoUri} offsetNs={selectedTalk.offsetNs} />