diff --git a/changes/changelog.d/436.bugfix b/changes/changelog.d/436.bugfix
new file mode 100644
index 0000000000000000000000000000000000000000..9ba0e1a205061c8015d8c348b48d36cd664770d4
--- /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 3510852b24607b652c901e2bf5743d003d0833bc..600d3de4cb2bc353f3cbc3bd18b53f659cb4e041 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')