diff --git a/front/src/components/audio/track/Row.vue b/front/src/components/audio/track/Row.vue
index 4eda9955a2665f2bc95a2683a3cb6984098d5cd0..8310e89c4a4ad6ab749f2386003f1c59ae7dccea 100644
--- a/front/src/components/audio/track/Row.vue
+++ b/front/src/components/audio/track/Row.vue
@@ -60,9 +60,11 @@ export default {
 </script>
 
 <!-- Add "scoped" attribute to limit CSS to this component only -->
-<style scoped>
+<style lang="scss" scoped>
 
-tr:not(:hover) .favorite-icon:not(.favorited) {
-  display: none;
+tr:not(:hover) {
+  .favorite-icon:not(.favorited), .playlist-icon {
+    display: none;
+  }
 }
 </style>
diff --git a/front/src/components/playlists/TrackPlaylistIcon.vue b/front/src/components/playlists/TrackPlaylistIcon.vue
index 843d1539214a67530882a6eb360d4b1dfded3f40..bba4c515b0c90644182016f786c06e60b233b552 100644
--- a/front/src/components/playlists/TrackPlaylistIcon.vue
+++ b/front/src/components/playlists/TrackPlaylistIcon.vue
@@ -9,7 +9,7 @@
   <i
     v-else
     @click="$store.commit('playlists/chooseTrack', track)"
-    :class="['favorite-icon', 'list', 'link', 'icon']"
+    :class="['playlist-icon', 'list', 'link', 'icon']"
     title="Add to playlist...">
   </i>
 </template>