diff --git a/pkg/harvester/components/SettingList.vue b/pkg/harvester/components/SettingList.vue
index ea9566fa..edb56ec4 100644
--- a/pkg/harvester/components/SettingList.vue
+++ b/pkg/harvester/components/SettingList.vue
@@ -98,8 +98,12 @@ export default {
return true;
}
- const description = this.t(setting.description, this.getDocLinkParams(setting) || {}, true)?.toLowerCase() || '';
+ let description = this.t(setting.description, this.getDocLinkParams(setting) || {}, true)?.toLowerCase() || '';
+ // remove tags from description
+ if (description.includes(']*>(.*?)<\/a>/g, '$1');
+ }
// filter by description
if (description.includes(searchQuery)) {
return true;