diff --git a/components/admin/AdminBlockEditor.vue b/components/admin/AdminBlockEditor.vue index bddd31d..2af6e11 100644 --- a/components/admin/AdminBlockEditor.vue +++ b/components/admin/AdminBlockEditor.vue @@ -881,7 +881,7 @@ watch(() => props.modelValue, (value) => { const currentValue = serializeBlocks() - if (value === currentValue) { + if (value === currentValue && editorBlocks.value.length) { return } diff --git a/components/site/LeftSidebar.vue b/components/site/LeftSidebar.vue index 9729b38..f43bf24 100644 --- a/components/site/LeftSidebar.vue +++ b/components/site/LeftSidebar.vue @@ -13,16 +13,16 @@ const { data: tags } = await useFetch('/api/tags', { Home pages - + Tags Authors - + Style - + Post types @@ -46,7 +46,7 @@ const { data: tags } = await useFetch('/api/tags', { v-for="tag in tags" :key="tag.id" class="left-sidebar__category flex items-center gap-3" - :to="`/tags/${tag.slug}`" + :to="`/tag/${tag.slug}`" > {{ tag.name }} diff --git a/components/site/RightSidebar.vue b/components/site/RightSidebar.vue index 41a4e0c..ac32b20 100644 --- a/components/site/RightSidebar.vue +++ b/components/site/RightSidebar.vue @@ -44,7 +44,7 @@