From ae4678cf245d2c69d1c4d460138c6d836948a90a Mon Sep 17 00:00:00 2001 From: benonymity Date: Thu, 28 Apr 2022 17:13:21 -0400 Subject: [PATCH] Resize button, no podcast downloads on iOS --- components/tables/podcast/EpisodeRow.vue | 11 ++++++++--- components/ui/ReadIconBtn.vue | 2 +- pages/item/_id.vue | 6 +++--- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/components/tables/podcast/EpisodeRow.vue b/components/tables/podcast/EpisodeRow.vue index 984afee8..aa0e422a 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..0b9a9590 100644 --- a/components/ui/ReadIconBtn.vue +++ b/components/ui/ReadIconBtn.vue @@ -1,5 +1,5 @@