Open
Description
Feature request
autoAddCategoryToNavbar Add judgment
file : NavbarLinks.vue
code👇
const parseCategories = computed(() => {
let arr = [];
if (Object.values(categorySummary?.categories?.items).length > 0) {
arr.push({
text: themeLocal.value.autoAddCategoryToNavbar?.categoryText || 'Categories',
children: Object.values(categorySummary?.categories?.items || {}).map((c) => ({
// @ts-ignore
text: c.label,
// @ts-ignore
link: `/categories/${convertToPinyin(c.label)}/1/`,
}))
})
}
if (Object.values(categorySummary?.tags?.items).length > 0) {
arr.push({
text: themeLocal.value.autoAddCategoryToNavbar?.tagText || 'Tags',
children: Object.values(categorySummary?.tags?.items || {}).map(t => ({
// @ts-ignore
text: t.label,
// @ts-ignore
link: `/tags/${convertToPinyin(t.label)}/1/`,
}))
})
}
return arr;
})
What problem does this feature solve?
When I don't have a tag, I don't add a tag
How should this be implemented in your opinion?
Are you willing to work on this yourself?
Metadata
Metadata
Assignees
Labels
No labels