Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit dfca67f

Browse files
Merge pull request #2158 from bjarnef/feature/health-check-icons
Health check icons and colors
2 parents 7b1a7ff + f24ce9b commit dfca67f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/packages/health-check/views/health-check-group-box-overview.element.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,25 @@ export class UmbHealthCheckGroupBoxOverviewElement extends UmbLitElement {
6464
_renderCheckResults(resultObject: any) {
6565
return html`${resultObject.success > 0
6666
? html`<uui-tag look="secondary" color="positive">
67-
<uui-icon name="icon-check"></uui-icon>
67+
<uui-icon name="check"></uui-icon>
6868
${resultObject.success}
6969
</uui-tag> `
7070
: nothing}
7171
${resultObject.warning > 0
7272
? html`<uui-tag look="secondary" color="warning">
73-
<uui-icon name="icon-alert"></uui-icon>
73+
<uui-icon name="alert"></uui-icon>
7474
${resultObject.warning}
7575
</uui-tag>`
7676
: nothing}
7777
${resultObject.error > 0
7878
? html`<uui-tag look="secondary" color="danger">
79-
<uui-icon name="icon-wrong"></uui-icon>
79+
<uui-icon name="remove"></uui-icon>
8080
${resultObject.error}
8181
</uui-tag>`
8282
: nothing}
8383
${resultObject.info > 0
8484
? html`<uui-tag look="secondary">
85-
<uui-icon name="icon-info"></uui-icon>
85+
<uui-icon name="info"></uui-icon>
8686
${resultObject.info}
8787
</uui-tag>`
8888
: nothing} `;

src/packages/health-check/views/health-check-group.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class UmbDashboardHealthCheckGroupElement extends UmbLitElement {
129129
case StatusResultTypeModel.SUCCESS:
130130
return html`<uui-icon style="color: var(--uui-color-positive);" name="check"></uui-icon>`;
131131
case StatusResultTypeModel.WARNING:
132-
return html`<uui-icon style="color: var(--uui-color-warning);" name="alert"></uui-icon>`;
132+
return html`<uui-icon style="color: var(--uui-color-warning-standalone);" name="alert"></uui-icon>`;
133133
case StatusResultTypeModel.ERROR:
134134
return html`<uui-icon style="color: var(--uui-color-danger);" name="remove"></uui-icon>`;
135135
case StatusResultTypeModel.INFO:

0 commit comments

Comments
 (0)