|
|
|
|
@ -42,16 +42,16 @@
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>description</th>
|
|
|
|
|
<th>duration</th>
|
|
|
|
|
<th>songs</th>
|
|
|
|
|
<th>comments</th>
|
|
|
|
|
<th>songs</th>
|
|
|
|
|
<th>duration</th>
|
|
|
|
|
<th>created at</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr v-for="session in categorySessions">
|
|
|
|
|
<td @click="copy">{{session.description}}</td>
|
|
|
|
|
<td>{{formatSeconds(session.seconds)}}</td>
|
|
|
|
|
<td>{{session.comments}}</td>
|
|
|
|
|
<td>
|
|
|
|
|
<ul>
|
|
|
|
|
<li v-for="song in session.songs">
|
|
|
|
|
@ -61,7 +61,7 @@
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{session.comments}}</td>
|
|
|
|
|
<td>{{formatSeconds(session.seconds)}}</td>
|
|
|
|
|
<td>{{new Date(session.created_at).toLocaleString("en-US")}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
|