reorder columns in show category

main
Matthew Huntington 4 months ago
parent 4078377ce5
commit bc99e16a4c

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

Loading…
Cancel
Save