Skip to content

Commit

Permalink
Fixed Event Blocking Issue (在中国!)
Browse files Browse the repository at this point in the history
  • Loading branch information
NatVIII committed May 22, 2024
1 parent dc45243 commit 4cf3576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const tagsToHide = ['hidden', 'internal']; // Tags that should hide events
function isDisplayingBasedOnTags(event) {
// Check if the event has any tag that requires it to be hidden
const shouldHideEvent = event.tags && event.tags.some(tag => tagsToHide.includes(tag));
return shouldHideEvent ? 'none' : 'auto'; // Return 'none' to hide, 'auto' to show
return shouldHideEvent ? 'none' : 'list-item'; // Return 'none' to hide, 'auto' to show
}
const { theme } = useTheme();
Expand Down

1 comment on commit 4cf3576

@vercel
Copy link

@vercel vercel bot commented on 4cf3576 May 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rva-rip – ./

rva-rip-git-main-my-team-66f1c945.vercel.app
rva-rip-my-team-66f1c945.vercel.app
www.rva.rip
rva.rip

Please sign in to comment.