From 24e26ac0322419aba20d1f349ad444186ceba3f6 Mon Sep 17 00:00:00 2001
From: Arthur Saint-Genis <arthur@codeshuffle.org>
Date: Sat, 22 Sep 2018 13:48:15 +0000
Subject: [PATCH] Resolve "Wrong icon in play button dropdown"

---
 changes/changelog.d/436.bugfix            | 1 +
 front/src/components/audio/PlayButton.vue | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
 create mode 100644 changes/changelog.d/436.bugfix

diff --git a/changes/changelog.d/436.bugfix b/changes/changelog.d/436.bugfix
new file mode 100644
index 000000000..9ba0e1a20
--- /dev/null
+++ b/changes/changelog.d/436.bugfix
@@ -0,0 +1 @@
+Updated wrong icon and copy in play button dropdown (#436)
diff --git a/front/src/components/audio/PlayButton.vue b/front/src/components/audio/PlayButton.vue
index 3510852b2..600d3de4c 100644
--- a/front/src/components/audio/PlayButton.vue
+++ b/front/src/components/audio/PlayButton.vue
@@ -14,7 +14,7 @@
       <div class="menu">
         <div class="item" :disabled="!playable" @click="add" :title="labels.addToQueue"><i class="plus icon"></i><translate>Add to queue</translate></div>
         <div class="item" :disabled="!playable" @click="addNext()" :title="labels.playNext"><i class="step forward icon"></i><translate>Play next</translate></div>
-        <div class="item" :disabled="!playable" @click="addNext(true)" :title="labels.playNow"><i class="arrow down icon"></i><translate>Play now</translate></div>
+        <div class="item" :disabled="!playable" @click="addNext(true)" :title="labels.playNow"><i class="play icon"></i><translate>Play now</translate></div>
       </div>
     </div>
   </span>
@@ -58,7 +58,7 @@ export default {
     },
     title () {
       if (this.playable) {
-        return this.$gettext('Play immediatly')
+        return this.$gettext('Play now')
       } else {
         if (this.track) {
           return this.$gettext('This track is not available in any library you have access to')
-- 
GitLab