Skip to content

Commit

Permalink
deal with extra space in output of time
Browse files Browse the repository at this point in the history
  • Loading branch information
darrylhein committed Aug 15, 2024
1 parent 653088c commit e7dd5ca
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions public/js/src/common/local_time.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<template>
<time :datetime="datetime">
<span class="whitespace-nowrap">{{ displayDate }}</span>&MediumSpace;
<span class="whitespace-nowrap">{{ displayTime }}</span>
<span class="whitespace-nowrap">
{{ displayDate }}
</span>&MediumSpace;<span class="whitespace-nowrap">
{{ displayTime }}
</span>
</time>
</template>

Expand Down

0 comments on commit e7dd5ca

Please sign in to comment.