From 1eb8b35501d56d038f6428422bb25db94ffbbac8 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Mon, 2 Sep 2024 15:54:21 +0200 Subject: [PATCH] refactor: :art: cleanup some old css class --- src/components/Feed/Episode.vue | 4 ++-- .../Feed/{Favorites.vue => Favorite.vue} | 2 +- src/components/Player/Timer.vue | 4 ++-- src/components/Player/Volume.vue | 15 ++++++++------- src/views/Feed.vue | 11 +---------- src/views/GPodder.vue | 2 +- src/views/Home.vue | 6 +++--- 7 files changed, 18 insertions(+), 26 deletions(-) rename src/components/Feed/{Favorites.vue => Favorite.vue} (99%) diff --git a/src/components/Feed/Episode.vue b/src/components/Feed/Episode.vue index bfa6a15..f6852f1 100644 --- a/src/components/Feed/Episode.vue +++ b/src/components/Feed/Episode.vue @@ -81,8 +81,8 @@ class="progress" :value="(episode.action.position * 100) / episode.action.total" /> - diff --git a/src/components/Feed/Favorites.vue b/src/components/Feed/Favorite.vue similarity index 99% rename from src/components/Feed/Favorites.vue rename to src/components/Feed/Favorite.vue index faa57e5..80c9623 100644 --- a/src/components/Feed/Favorites.vue +++ b/src/components/Feed/Favorite.vue @@ -35,7 +35,7 @@ import { showError } from '../../utils/toast.js' import { useSubscriptions } from '../../store/subscriptions.js' export default { - name: 'Favorites', + name: 'Favorite', components: { Episode, Loading, diff --git a/src/components/Player/Timer.vue b/src/components/Player/Timer.vue index ebce2a6..3478db5 100644 --- a/src/components/Player/Timer.vue +++ b/src/components/Player/Timer.vue @@ -1,5 +1,5 @@