diff --git a/_project/frontend-nuxt/layouts/default.vue b/_project/frontend-nuxt/layouts/default.vue
index 2f5bd660d..ff334e842 100644
--- a/_project/frontend-nuxt/layouts/default.vue
+++ b/_project/frontend-nuxt/layouts/default.vue
@@ -31,6 +31,8 @@ onMounted(() => {
+ |
+ Blog
{{ router.currentRoute.value.name }}
diff --git a/_project/frontend-nuxt/pages/blog/[id].vue b/_project/frontend-nuxt/pages/blog/[id].vue
index 56a9d0773..2372d90a7 100644
--- a/_project/frontend-nuxt/pages/blog/[id].vue
+++ b/_project/frontend-nuxt/pages/blog/[id].vue
@@ -41,7 +41,7 @@ const [publishing, publish] = useAndHandleMutation(
- Publish to all blog sites {{ publishing.loading && `(${progress})` }}
+ Publish to all blog sites {{ publishing.loading ? `(${progress})` : "" }}
Title: {{ latestPost.title }}
Body: {{ latestPost.body }}
diff --git a/_project/frontend-nuxt/pages/blog/index.vue b/_project/frontend-nuxt/pages/blog/index.vue
index b8684942a..a51480877 100644
--- a/_project/frontend-nuxt/pages/blog/index.vue
+++ b/_project/frontend-nuxt/pages/blog/index.vue
@@ -13,7 +13,7 @@ const createPost = flow(createPost_, _ => _.then(_ => reloadPosts()))
a new Title and a new body
-
+
Here's a Post List