diff --git a/src/components/Settings/Speed.vue b/src/components/Settings/Speed.vue
index 99fdc39..a184c1b 100644
--- a/src/components/Settings/Speed.vue
+++ b/src/components/Settings/Speed.vue
@@ -3,7 +3,9 @@
@@ -42,7 +44,10 @@ export default {
methods: {
changeRate(diff) {
const newRate = (this.player.rate + diff).toPrecision(2)
- this.$store.dispatch('player/rate', newRate > 0 ? newRate : this.player.rate)
+ this.$store.dispatch(
+ 'player/rate',
+ newRate > 0 ? newRate : this.player.rate,
+ )
},
},
}
diff --git a/src/components/Sidebar/Item.vue b/src/components/Sidebar/Item.vue
index aadfcf7..cac8f17 100644
--- a/src/components/Sidebar/Item.vue
+++ b/src/components/Sidebar/Item.vue
@@ -1,5 +1,8 @@
-
+