diff --git a/changes/changelog.d/613.bugfix b/changes/changelog.d/613.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..a03fe1d27a8c2b20a01d8b11a39d0b4f1e35d9a9 --- /dev/null +++ b/changes/changelog.d/613.bugfix @@ -0,0 +1 @@ +Fixed incorrect icon for "next track" in player control (#613) \ No newline at end of file diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index 80c54bbb2d9ad0f41174894e1a13611fee28250d..618fcd7164b9c0e7348c388f366254eaa9aa6b47 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -107,7 +107,7 @@ class="two wide column control" @click.prevent.stop="next" :disabled="!hasNext"> - <i :class="['ui', {'disabled': !hasNext}, 'step', 'forward', 'secondary', 'icon']" ></i> + <i :class="['ui', {'disabled': !hasNext}, 'forward', 'secondary', 'icon']" ></i> </a> <div class="wide column control volume-control"