Skip to content

Commit

Permalink
only show solved topics
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectronicBlueberry committed Oct 26, 2023
1 parent b082a12 commit a672779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Tool/ToolHelpForum.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const helpAvailable = computed(() => topics.value.length > 0);
const root = ref(null);
const query = computed(() => `tag:${props.toolId} tag:${toolHelpTag}`);
const query = computed(() => `tags:${props.toolId}+${toolHelpTag} status:solved`);
onMounted(async () => {
const response = await helpFetcher({ query: query.value });
Expand Down

0 comments on commit a672779

Please sign in to comment.