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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,
}),
);