chore: deps; better single episode show display; styles
This commit is contained in:
parent
5a8ad0af13
commit
fbce37d5a0
5 changed files with 39 additions and 38 deletions
|
@ -91,7 +91,7 @@ export default async function () {
|
|||
showEpisodesMap[showTmdbId].episodes.push({
|
||||
name: showTitle,
|
||||
url: `/watching/shows/${showTmdbId}`,
|
||||
subtext: `${showTitle} / S${seasonNumber}E${episodeNumber}`,
|
||||
subtext: `S${seasonNumber}E${episodeNumber}`,
|
||||
episode: episodeNumber,
|
||||
season: seasonNumber,
|
||||
tmdbId: showTmdbId,
|
||||
|
@ -113,7 +113,7 @@ export default async function () {
|
|||
|
||||
if (show.episodes.length > 1) {
|
||||
episodeData.push({
|
||||
name: show.title,
|
||||
name: show['title'],
|
||||
url: `/watching/shows/${show['tmdbId']}`,
|
||||
subtext: `S${startingSeason}E${startingEpisode} - S${endingSeason}E${endingEpisode}`,
|
||||
startingEpisode,
|
||||
|
|
Reference in a new issue