Commit e5bf27e7 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

enh: include desc in fuzzy search

parent a9a6ed8b
......@@ -53,12 +53,13 @@
const _item = {
...item,
modelName: item.model?.name,
tags: item.model?.info?.meta?.tags?.map((tag) => tag.name).join(' ')
tags: item.model?.info?.meta?.tags?.map((tag) => tag.name).join(' '),
desc: item.model?.info?.meta?.description
};
return _item;
}),
{
keys: ['value', 'label', 'tags', 'modelName']
keys: ['value', 'label', 'tags', 'desc', 'modelName']
}
);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment