mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
fix(ui): do not show poll expiration if missing (#2176)
This commit is contained in:
parent
d52755a153
commit
78b8b441ba
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ const votersCount = $computed(() => poll.votersCount ?? poll.votesCount ?? 0)
|
|||
:count="poll.votesCount"
|
||||
/>
|
||||
·
|
||||
<CommonTooltip :content="expiredTimeFormatted" class="inline-block" placement="right">
|
||||
<CommonTooltip v-if="poll.expiresAt" :content="expiredTimeFormatted" class="inline-block" placement="right">
|
||||
<time :datetime="poll.expiresAt!">{{ $t(poll.expired ? 'status.poll.finished' : 'status.poll.ends', [expiredTimeAgo]) }}</time>
|
||||
</CommonTooltip>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue