Skip to content

Commit a0d9053

Browse files
committed
sup
1 parent 25cd54e commit a0d9053

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/routes/(sup)/sup/projects/filter.svelte.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export class ProjectSearchFilter extends SearchFilter<ProjectData>
1414
partial_ratio(this.query, project.name),
1515
partial_ratio(this.query, project.tech.join(" ")),
1616
project.desc ? partial_ratio(this.query, project.desc) : 0,
17-
project.tags ? partial_ratio(this.query, project.tags) : 0,
17+
project.tech ? partial_ratio(this.query, project.tech.join(" ")) : 0,
18+
project.tags ? partial_ratio(this.query, project.tags.join(" ")) : 0,
1819
)
1920
);
2021
}

0 commit comments

Comments
 (0)