- <%= cover_image_tag @album, class: "c-card__image u-image-medium", data: {"test-id" => "album_image"} %>
+ <%= cover_image_tag @album, class: "c-card__image u-image-medium" %>
<%= @album.name %>
<%= link_to @album.artist.name, artist_path(@album.artist), class: "c-card__body__text" %>
@@ -39,7 +39,7 @@
<% end %>
<% songs.each do |song| %>
-
+
<%= button_to(
current_playlist_album_path(@album, should_play: true, song_id: song.id),
@@ -56,7 +56,7 @@
) do %>
-
<%= song.name %>
+
<%= song.name %>
<% if @album.artist.various? %>
<% if native_app? %>
<%= song.artist.name %>
@@ -69,7 +69,7 @@
<% end %>
-
+
<%= icon_tag "more-vertical", size: "small", title: t("label.more") %>
diff --git a/app/views/artists/_artist.html.erb b/app/views/artists/_artist.html.erb
index 1858ca56..f0014252 100644
--- a/app/views/artists/_artist.html.erb
+++ b/app/views/artists/_artist.html.erb
@@ -1,4 +1,4 @@
-
+
<%= link_to artist_path(artist), class: "c-card__image" do %>
<%= cover_image_tag artist, class: "u-image-fluid" %>
<% end %>
diff --git a/app/views/artists/show.html.erb b/app/views/artists/show.html.erb
index fd34ff11..7c1995aa 100644
--- a/app/views/artists/show.html.erb
+++ b/app/views/artists/show.html.erb
@@ -2,7 +2,7 @@
- <%= cover_image_tag @artist, class: "c-card__image u-image-medium", data: {"test-id" => "artist_image"} %>
+ <%= cover_image_tag @artist, class: "c-card__image u-image-medium" %>
<%= @artist.name %>
diff --git a/app/views/current_playlist/songs/_song.html.erb b/app/views/current_playlist/songs/_song.html.erb
index 38e09afb..6f7bd18c 100644
--- a/app/views/current_playlist/songs/_song.html.erb
+++ b/app/views/current_playlist/songs/_song.html.erb
@@ -4,25 +4,24 @@
data-song-id='<%= song.id %>'
data-song-json='<%= song_json_builder(song).target! %>'
data-should-play='<%= local_assigns[:should_play] ? should_play : false %>'
- draggable='true'
- data-test-id='current_playlist_song'>
+ draggable='true'>
<% unless mobile? %>
-
+
<% end %>
-
+
<%= icon_tag "more-vertical", size: "small", title: t("label.more") %>