We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25cd54e commit a0d9053Copy full SHA for a0d9053
1 file changed
src/routes/(sup)/sup/projects/filter.svelte.ts
@@ -14,7 +14,8 @@ export class ProjectSearchFilter extends SearchFilter<ProjectData>
14
partial_ratio(this.query, project.name),
15
partial_ratio(this.query, project.tech.join(" ")),
16
project.desc ? partial_ratio(this.query, project.desc) : 0,
17
- project.tags ? partial_ratio(this.query, project.tags) : 0,
+ project.tech ? partial_ratio(this.query, project.tech.join(" ")) : 0,
18
+ project.tags ? partial_ratio(this.query, project.tags.join(" ")) : 0,
19
)
20
);
21
}
0 commit comments