Skip to content

Commit

Permalink
Fix health check link (#17828)
Browse files Browse the repository at this point in the history
"Back to overview" would push the wrong url to the history, which would break things if you reloaded your page
  • Loading branch information
matthewcare authored Jan 21, 2025
1 parent 839b681 commit 5c0cdf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
}

Expand Down

0 comments on commit 5c0cdf5

Please sign in to comment.