From 822ca65349715e7479ccf80936ab630a28d9a1d1 Mon Sep 17 00:00:00 2001 From: Ansel Santosa <568242+anstosa@users.noreply.github.com> Date: Sun, 26 Jan 2025 07:43:44 -0800 Subject: [PATCH] Sensible default sort for podcasts --- components/tables/podcast/EpisodesTable.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/tables/podcast/EpisodesTable.vue b/components/tables/podcast/EpisodesTable.vue index 5deb98ef..127885d6 100644 --- a/components/tables/podcast/EpisodesTable.vue +++ b/components/tables/podcast/EpisodesTable.vue @@ -278,6 +278,7 @@ export default { return this.$store.getters['user/getUserMediaProgress'](this.libraryItemId, episode.id) }, init() { + this.sortDesc = this.mediaMetadata.type === 'episodic' this.episodesCopy = this.episodes.map((ep) => { return { ...ep } })