浏览代码

made disliked songs have the same style as liked songs

Akira Laine 9 年之前
父节点
当前提交
d4bf3ef8f2
共有 1 个文件被更改,包括 5 次插入1 次删除
  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">
                     <div class="panel-body song-panel">
                         <ul>
                         <ul>
                             {{#each dislikedSongs}}
                             {{#each dislikedSongs}}
-                                <li>{{title}} - {{artist}} - {{room}}</li>
+                                <li>
+                                    <p class="song-panel-room">{{room}}</p>
+                                    <h4>{{title}}</h4>
+                                    <h5>{{artist}}</h5>
+                                </li>
                             {{/each}}
                             {{/each}}
                         </ul>
                         </ul>
                     </div>
                     </div>