diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-group.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-group.element.ts index d64930f5cd..0c38a7dfdc 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-group.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-group.element.ts @@ -2,6 +2,7 @@ import { UUIButtonState } from '@umbraco-ui/uui'; import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { css, html, nothing } from 'lit'; import { customElement, property, state } from 'lit/decorators.js'; +import { unsafeHTML } from 'lit/directives/unsafe-html.js'; import { UmbHealthCheckContext } from '../health-check.context'; import { UmbHealthCheckDashboardContext } from '../health-check-dashboard.context'; @@ -117,12 +118,12 @@ export class UmbDashboardHealthCheckGroupElement extends UmbLitElement {

${this._group.name}

- Get checks + Perform checks
@@ -145,7 +146,7 @@ export class UmbDashboardHealthCheckGroupElement extends UmbLitElement { return html`
${this.renderIcon(result.resultType)} -

${result.message}

+

${unsafeHTML(result.message)}

${result.actions ? this.renderActions(result.actions) : nothing} diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts index 9db9319459..6968f0d5f6 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/settings/dashboards/health-check/views/health-check-overview.element.ts @@ -58,12 +58,12 @@ export class UmbDashboardHealthCheckOverviewElement extends UmbLitElement {
Health Check - Check all groups + Perform all checks