Skip to content

Commit ed63362

Browse files
authored
Hide Suggestion tag from doc panel (#12662)
Fixes #12652
1 parent 5a6412f commit ed63362

File tree

1 file changed

+1
-1
lines changed
  • app/gui/src/project-view/components/DocumentationPanel

1 file changed

+1
-1
lines changed

app/gui/src/project-view/components/DocumentationPanel/DocsTags.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { computed, ref, watch } from 'vue'
55
66
const props = defineProps<{ tags: Doc.Section.Tag[]; groupColor: string }>()
77
8-
const skipTags: Doc.Tag[] = ['Icon']
8+
const skipTags: Doc.Tag[] = ['Icon', 'Suggested']
99
const tags = computed<Doc.Section.Tag[]>(() => {
1010
return props.tags.flatMap((tag) => {
1111
if (tag.tag === 'Alias') {

0 commit comments

Comments
 (0)