changing field names

This commit is contained in:
2025-12-10 17:31:41 +00:00
parent d39d5c23c4
commit d7cfd274c0

View File

@@ -52,7 +52,7 @@ onMounted(() => {
<p>By: {{ post.author.username }}</p>
<div>{{ post.content }}</div>
<small
>Created at: {{ new Date(post.CreatedAt).toLocaleString() }}</small
>Created at: {{ new Date(post.createdAt).toLocaleString() }}</small
>
<button v-if="!leftCap" @click="prevPost">Prev</button>
<button v-if="!rightCap" @click="nextPost">Next</button>