diff --git a/client/components/tables/podcast/LazyEpisodeRow.vue b/client/components/tables/podcast/LazyEpisodeRow.vue index 8709b1ad..5a4a3a85 100644 --- a/client/components/tables/podcast/LazyEpisodeRow.vue +++ b/client/components/tables/podcast/LazyEpisodeRow.vue @@ -10,8 +10,13 @@

+
-
+

+ {{ $strings.LabelFilename }}: {{ episode.audioFile.metadata.filename }} +

+

{{ $getString('LabelSeasonNumber', [episode.season]) }}

{{ $getString('LabelEpisodeNumber', [episode.episode]) }}

{{ $getString('LabelChapterCount', [episode.chapters.length]) }}

@@ -65,7 +70,8 @@ export default { episode: { type: Object, default: () => null - } + }, + sortKey: String }, data() { return { diff --git a/client/components/tables/podcast/LazyEpisodesTable.vue b/client/components/tables/podcast/LazyEpisodesTable.vue index af0f5584..057958f3 100644 --- a/client/components/tables/podcast/LazyEpisodesTable.vue +++ b/client/components/tables/podcast/LazyEpisodesTable.vue @@ -1,3 +1,4 @@ +