Skip to content

Commit 158508c

Browse files
committed
Looks like we need another release
Not sure how the bundling failed, but anyway. Signed-off-by: Dave Shanley <dave@quobix.com>
1 parent b9a490a commit 158508c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

html-report/ui/build/static/js/vacuumReport.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,9 @@
924924
<hr />
925925
<p class="violated">
926926
Learn more about:
927-
<a href="https://quobix.com/vacuum/rules/${this.category}/${this.ruleId}">${this.ruleId}</a
927+
<a
928+
href="https://quobix.com/vacuum/rules/${this.category}/${this.ruleId}"
929+
>${this.ruleId}</a
928930
>
929931
</p>
930932
`:K`

html-report/ui/src/components/rule-category-navigation/rule-category-navigation-component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class RuleCategoryNavigationComponent extends BaseComponent {
4545
const child = this._slottedChildren[x] as RuleCategoryLinkComponent;
4646

4747
if (child.name != e.detail.id) {
48-
child.disableCategory();
48+
child.disableCategory();
4949
} else {
5050
// if it's not already been set, set it (in case of default).
5151
if (!child.active) {

html-report/ui/src/components/violation-drawer/violation-drawer-component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ export class ViolationDrawerComponent extends BaseComponent {
6161
<hr />
6262
<p class="violated">
6363
Learn more about:
64-
<a href="https://quobix.com/vacuum/rules/${this.category}/${this.ruleId}">${this.ruleId}</a
64+
<a
65+
href="https://quobix.com/vacuum/rules/${this.category}/${this
66+
.ruleId}"
67+
>${this.ruleId}</a
6568
>
6669
</p>
6770
`;

0 commit comments

Comments
 (0)