Skip to content

Commit

Permalink
Updated date to be normal size if in list view
Browse files Browse the repository at this point in the history
  • Loading branch information
SebiWrn committed Jan 24, 2024
1 parent 6eeedd2 commit 34fb23d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions web/template/home.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -492,14 +492,13 @@
</a>
</template>
<template x-if="vod.HasName()">

<span class="date text-sm"
x-text="vod.FriendlyDateStart()"></span>
</template>

<template x-if="!vod.HasName()">
<a :href="course.WatchURL(vod.ID)">
<span class="date text-sm"
<a :class="isListView() ? 'title overflow-hidden' : ''" :href="course.WatchURL(vod.ID)">
<span class="date" :class="isListView() ? '' : 'text-sm'"
x-text="vod.FriendlyDateStart()"></span>
</a>
</template>
Expand Down

0 comments on commit 34fb23d

Please sign in to comment.