diff --git a/front/src/components/Queue.vue b/front/src/components/Queue.vue
index 8966c889c..ae4a447fe 100644
--- a/front/src/components/Queue.vue
+++ b/front/src/components/Queue.vue
@@ -194,7 +194,7 @@
You have a radio playing
New tracks will be appended here automatically.
-
Stop radio
+
diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue
index 9aa382c1d..08e114a43 100644
--- a/front/src/components/audio/PlayButton.vue
+++ b/front/src/components/audio/PlayButton.vue
@@ -9,10 +9,9 @@
Play
-
@@ -29,18 +28,19 @@
Start radio
-
-
+
@@ -270,9 +270,14 @@ export default {
jQuery(this.$el).find('.ui.dropdown').dropdown({
selectOnKeydown: false,
action: function (text, value, $el) {
- // used ton ensure focusing the dropdown and clicking via keyboard
+ // used to ensure focusing the dropdown and clicking via keyboard
// works as expected
- self.$refs[$el.data('ref')].click()
+ let button = self.$refs[$el.data('ref')]
+ if (Array.isArray(button)) {
+ button[0].click()
+ } else {
+ button.click()
+ }
jQuery(self.$el).find('.ui.dropdown').dropdown('hide')
},
})
diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue
index 8766b5e9c..c2091141f 100644
--- a/front/src/components/audio/Player.vue
+++ b/front/src/components/audio/Player.vue
@@ -11,7 +11,7 @@