fix spacing in poll expiration label

This commit is contained in:
Henry Jameson 2022-03-29 19:04:01 +03:00
parent 0afc955ebd
commit bc029b0fa2

View file

@ -71,16 +71,18 @@
{{ $tc("polls.votes_count", poll.votes_count, { count: poll.votes_count }) }} ·  {{ $tc("polls.votes_count", poll.votes_count, { count: poll.votes_count }) }} · 
</template> </template>
</div> </div>
<i18n-t <span>
scope="global" <i18n-t
:keypath="expired ? 'polls.expired' : 'polls.expires_in'" scope="global"
> :keypath="expired ? 'polls.expired' : 'polls.expires_in'"
<Timeago >
:time="expiresAt" <Timeago
:auto-update="60" :time="expiresAt"
:now-threshold="0" :auto-update="60"
/> :now-threshold="0"
</i18n-t> />
</i18n-t>
</span>
</div> </div>
</div> </div>
</template> </template>