Skip to content

Commit c4973eb

Browse files
authored
Merge pull request #1958 from shmax/boost-fixes
Fix group boosts
2 parents ba58696 + 2e7a34c commit c4973eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/output/plugins/JavascriptIndexPlugin.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ export class JavascriptIndexPlugin extends RendererComponent {
7373
kinds[reflection.kind] = GroupPlugin.getKindSingular(
7474
reflection.kind
7575
);
76+
}
7677

77-
const kindBoost = kindBoosts[kinds[reflection.kind] ?? ""];
78-
if (kindBoost != undefined) {
79-
boost *= kindBoost;
80-
}
78+
const kindBoost = kindBoosts[kinds[reflection.kind] ?? ""];
79+
if (kindBoost != undefined) {
80+
boost *= kindBoost;
8181
}
8282

8383
const row: any = {

0 commit comments

Comments
 (0)