This commit is contained in:
dragongoose
2025-09-30 17:34:40 -04:00
parent e3afaaf386
commit 4494681fd3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export default {
async setup() {
const data = ref<CategoryData>()
const status = ref<'ok' | 'error'>()
const endOfScroll = ref<Boolean>() // Display message when user reaches bottom of page
const endOfScroll = ref<boolean>() // Display message when user reaches bottom of page
return {
data,
+1 -1
View File
@@ -39,7 +39,7 @@ export default {
const tagElements = category.getElementsByTagName('span')
const categoryTags = Array.from(tagElements, (el) => el.innerText.toLowerCase())
let tagInputIsValid = wantedTags.length > 0
const tagInputIsValid = wantedTags.length > 0
if (tagInputIsValid && !categoryTags.some((r) => wantedTags.includes(r))) {
category.style.display = 'none'
} else {