From 522f89ea2f54f41d9e6efc794e2b704d519a1117 Mon Sep 17 00:00:00 2001 From: nicfreeman1209 <nicfreeman1209@gmail.com> Date: Sun, 9 May 2021 22:18:57 +0100 Subject: [PATCH] display vote speed with fixed width for -/+ i.e. avoid the -/+ buttons moving when you try to click them twice in a row --- src/components/Vote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Vote.vue b/src/components/Vote.vue index 7d50303..f3f4410 100644 --- a/src/components/Vote.vue +++ b/src/components/Vote.vue @@ -32,7 +32,7 @@ @mousedown.prevent="setVotingSpeed(-500)" icon="minus-circle" /> - {{ session.votingSpeed / 1000 }}s + {{ (session.votingSpeed / 1000).toFixed(1) }}s <font-awesome-icon @mousedown.prevent="setVotingSpeed(500)" icon="plus-circle"