Skip to content

Commit

Permalink
fix: revert old workaround, fixed on the infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jul 29, 2024
1 parent b78b529 commit d62264f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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

0 comments on commit d62264f

Please sign in to comment.