Skip to content

Commit 5c0cdf5

Browse files
authored
Fix health check link (#17828)
"Back to overview" would push the wrong url to the history, which would break things if you reloaded your page
1 parent 839b681 commit 5c0cdf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Web.UI.Client/src/packages/health-check/views/health-check-group.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class UmbDashboardHealthCheckGroupElement extends UmbLitElement {
5959
}
6060

6161
override render() {
62-
return html` <a href="/section/settings/dashboard/health-check"> &larr; Back to overview </a>
62+
return html` <a href="section/settings/dashboard/health-check"> &larr; Back to overview </a>
6363
${this._group ? this.#renderGroup() : nothing}`;
6464
}
6565

0 commit comments

Comments
 (0)