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