Bläddra i källkod

made disliked songs have the same style as liked songs

Akira Laine 9 år sedan
förälder
incheckning
d4bf3ef8f2
1 ändrade filer med 5 tillägg och 1 borttagningar
  1. 5 1
      app/client/templates/profile.html

+ 5 - 1
app/client/templates/profile.html

@@ -70,7 +70,11 @@
                     <div class="panel-body song-panel">
                         <ul>
                             {{#each dislikedSongs}}
-                                <li>{{title}} - {{artist}} - {{room}}</li>
+                                <li>
+                                    <p class="song-panel-room">{{room}}</p>
+                                    <h4>{{title}}</h4>
+                                    <h5>{{artist}}</h5>
+                                </li>
                             {{/each}}
                         </ul>
                     </div>