mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 22:09:23 +02:00
Fixed wrong backward / forward icons in player
This commit is contained in:
parent
4747c6379c
commit
cbfb260288
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@
|
|||
class="two wide column control"
|
||||
@click.prevent.stop="previous"
|
||||
:disabled="emptyQueue">
|
||||
<i :class="['ui', 'backward', {'disabled': emptyQueue}, 'secondary', 'icon']"></i>
|
||||
<i :class="['ui', 'backward step', {'disabled': emptyQueue}, 'secondary', 'icon']"></i>
|
||||
</a>
|
||||
<a
|
||||
href
|
||||
|
@ -107,7 +107,7 @@
|
|||
class="two wide column control"
|
||||
@click.prevent.stop="next"
|
||||
:disabled="!hasNext">
|
||||
<i :class="['ui', {'disabled': !hasNext}, 'forward', 'secondary', 'icon']" ></i>
|
||||
<i :class="['ui', {'disabled': !hasNext}, 'forward step', 'secondary', 'icon']" ></i>
|
||||
</a>
|
||||
<div
|
||||
class="wide column control volume-control"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue