Search in plugin tags (#4604)

This commit is contained in:
qwerty287
2024-12-21 19:45:47 +02:00
committed by GitHub
parent 3cfca0501f
commit f4165b921e

View File

@@ -41,7 +41,7 @@ export function WoodpeckerPluginList({ plugins }: { plugins: WoodpeckerPlugin[]
const fuse = useRef(
new Fuse(plugins, {
keys: ['name', 'description'],
keys: ['name', 'description', 'tags'],
threshold: 0.3,
}),
);