diff --git a/components/tables/podcast/EpisodeRow.vue b/components/tables/podcast/EpisodeRow.vue index 984afee8..714f3eeb 100644 --- a/components/tables/podcast/EpisodeRow.vue +++ b/components/tables/podcast/EpisodeRow.vue @@ -27,9 +27,11 @@ - audio_file - {{ downloadItem ? 'downloading' : 'download' }} - download_done +
+ audio_file + {{ downloadItem ? 'downloading' : 'download' }} + download_done +
@@ -61,6 +63,9 @@ export default { } }, computed: { + isIos() { + return this.$platform === 'ios' + }, mediaType() { return 'podcast' }, diff --git a/components/ui/ReadIconBtn.vue b/components/ui/ReadIconBtn.vue index 934b0c6b..c26c7167 100644 --- a/components/ui/ReadIconBtn.vue +++ b/components/ui/ReadIconBtn.vue @@ -1,5 +1,5 @@