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
This commit is contained in:
Matthew Care
2025-01-21 07:30:07 +01:00
committed by GitHub
parent 839b6816f2
commit 5c0cdf5e58

View File

@@ -59,7 +59,7 @@ export class UmbDashboardHealthCheckGroupElement extends UmbLitElement {
}
override render() {
return html` <a href="/section/settings/dashboard/health-check"> &larr; Back to overview </a>
return html` <a href="section/settings/dashboard/health-check"> &larr; Back to overview </a>
${this._group ? this.#renderGroup() : nothing}`;
}