mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-17 21:53:12 +02:00
fix: series page z issue, episode page details
This commit is contained in:
@@ -41,6 +41,16 @@
|
||||
if (episode?.runtime) {
|
||||
titleProperties.push({ label: `${episode.runtime} Minutes` });
|
||||
}
|
||||
|
||||
if (episode?.air_date) {
|
||||
titleProperties.push({
|
||||
label: `Aired on ${new Date(episode.air_date).toLocaleDateString('en-US', {
|
||||
year: 'numeric',
|
||||
month: 'long',
|
||||
day: 'numeric'
|
||||
})}`
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
onDestroy(() => {
|
||||
|
||||
@@ -183,7 +183,7 @@
|
||||
</Container>
|
||||
</HeroCarousel>
|
||||
</Container>
|
||||
<div style={$visibleStyle}>
|
||||
<div class="relative z-10" style={$visibleStyle}>
|
||||
<EpisodeGrid
|
||||
on:enter={scrollIntoView({ top: -32, bottom: 128 })}
|
||||
on:mount={episodeCards.registrar}
|
||||
|
||||
Reference in New Issue
Block a user