mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 22:24:36 +00:00
display vote speed with fixed width for -/+
i.e. avoid the -/+ buttons moving when you try to click them twice in a row
This commit is contained in:
parent
a4655663dd
commit
522f89ea2f
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
||||||
@mousedown.prevent="setVotingSpeed(-500)"
|
@mousedown.prevent="setVotingSpeed(-500)"
|
||||||
icon="minus-circle"
|
icon="minus-circle"
|
||||||
/>
|
/>
|
||||||
{{ session.votingSpeed / 1000 }}s
|
{{ (session.votingSpeed / 1000).toFixed(1) }}s
|
||||||
<font-awesome-icon
|
<font-awesome-icon
|
||||||
@mousedown.prevent="setVotingSpeed(500)"
|
@mousedown.prevent="setVotingSpeed(500)"
|
||||||
icon="plus-circle"
|
icon="plus-circle"
|
||||||
|
|
Loading…
Add table
Reference in a new issue