From 891d4762d0da6236ca4f869cf4f651f47056e644 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Thu, 15 Aug 2024 18:52:50 +0200 Subject: [PATCH] fix: :pencil2: fix typo on setRate --- src/components/Settings/Speed.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Settings/Speed.vue b/src/components/Settings/Speed.vue index 4a01dbb..bc12422 100644 --- a/src/components/Settings/Speed.vue +++ b/src/components/Settings/Speed.vue @@ -40,7 +40,7 @@ export default { ...mapState(usePlayer, ['rate']), }, methods: { - ...mapActions(usePlayer, ['seRate']), + ...mapActions(usePlayer, ['setRate']), changeRate(diff) { const newRate = (this.rate + diff).toPrecision(2) this.setRate(newRate > 0 ? newRate : this.rate)