Skip to content

Commit

Permalink
chore: small workaround while I fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 29, 2024
1 parent d457feb commit b78b529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/CollectionView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default defineComponent({
return useChronosStore();
},
filteredArticles() {
let filtered = this.articles.filter((article) => article.Listed !== false);
let filtered = this.articles.filter((article) => article.Listed == false);
if (this.selectedTags.length > 0) {
filtered = filtered.filter((article) => {
if (article.Tags === null) return false;
Expand Down Expand Up @@ -179,7 +179,7 @@ export default defineComponent({
}
},
setTag(tag: string) {
this.selectedTags = [tag as never]
this.selectedTags = [tag as never]
}
},
});
Expand Down

0 comments on commit b78b529

Please sign in to comment.