Skip to content

Commit

Permalink
Update DocPTViewer.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Sep 18, 2024
1 parent 8a25357 commit 7fc53b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/showcase/components/doc/DocPTViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
this.hoveredElements = [];
},
handleData(doc) {
return doc.filter((item) => item.label !== 'hooks' && item.label !== 'transition');
return doc.filter((item) => item.label !== 'hooks' && item.label !== 'transition' && !item.label.includes('hidden'));
}
}
};
Expand Down

0 comments on commit 7fc53b7

Please sign in to comment.