Skip to content

Commit

Permalink
Add Creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Jun 29, 2024
1 parent 85e97f0 commit 0884ef7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions api/web/src/components/Profile/ProfileVideos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
v-else
class='table-responsive'
>
<table class='table table-hover card-table table-vcenter cursor-pointer'>
<table class='table table-hover card-table table-vcenter'>
<thead>
<tr>
<th>Name</th>
<th>Lease Path</th>
<th>Created</th>
<th>Updated</th>
<th>Lease Expiration</th>
</tr>
Expand All @@ -46,11 +46,11 @@
<tr
v-for='t in list.items'
:key='t.id'
@click='lease = t'
>
<td v-text='t.name' />
<td><TablerEpoch :date='t.created' /></td>
<td><TablerEpoch :date='t.updated' /></td>
<td class='subheader'v-text='`/${t.path}`' />
<td><TablerEpoch :date='t.updated'/></td>
<td><TablerEpoch :date='t.expiration'/></td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 0884ef7

Please sign in to comment.