fix: gaps
This commit is contained in:
@@ -41,11 +41,13 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAuthor } =
|
||||
>
|
||||
{{ getAuthor(note.did) }}
|
||||
</router-link>
|
||||
<span v-if="note.publishedAt"
|
||||
> • {{
|
||||
|
||||
<template v-if="note.publishedAt">
|
||||
<span> • </span>
|
||||
<span>{{
|
||||
new Date(note.publishedAt).toLocaleDateString()
|
||||
}}
|
||||
</span>
|
||||
}}</span>
|
||||
</template>
|
||||
<div v-else class="skeleton h-4 w-20"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -98,7 +98,10 @@ watch(
|
||||
>
|
||||
{{ author.handle }}
|
||||
</router-link>
|
||||
<span v-if="publishedAt"> • {{ publishedAt }}</span>
|
||||
<template v-if="publishedAt">
|
||||
<span> • </span>
|
||||
<span>{{ publishedAt }}</span>
|
||||
</template>
|
||||
</span>
|
||||
<div class="badge skeleton h-4 w-50" v-else></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user