🚧 add modal

This commit is contained in:
yanyongyu
2021-12-31 02:06:20 +08:00
parent 21a958ffd9
commit ab2c73856d
8 changed files with 286 additions and 5 deletions

View File

@ -23,7 +23,8 @@ export function filterObjs(filter: string, objs: Obj[]): Obj[] {
o.project_link?.indexOf(filter) != -1 ||
o.name.indexOf(filter) != -1 ||
o.desc.indexOf(filter) != -1 ||
o.author.indexOf(filter) != -1
o.author.indexOf(filter) != -1 ||
o.tags.filter((t) => t.label.indexOf(filter) != -1).length > 0
);
});
}