Skip to content

Commit 1ce3c1c

Browse files
committed
Update StatusBadge component to reflect workload terminology in status messages
1 parent da9501f commit 1ce3c1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/components/StatusBadge.svelte

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
</script>
1515

1616
{#if state === 'FAILING'}
17-
<XMarkOctagonFillIcon style="color: var(--a-icon-danger)" title="Application is failing" />
17+
<XMarkOctagonFillIcon style="color: var(--a-icon-danger)" title="Workload is failing" />
1818
{:else if state === 'NOT_NAIS'}
1919
<ExclamationmarkTriangleFillIcon
2020
style="color: var(--a-icon-warning)"
21-
title="Application is not nais"
21+
title="Workload is not nais"
2222
/>
2323
{:else if state === 'UNKNOWN'}
2424
<UnknownIcon
2525
{size}
2626
style="color: var(--a-icon-warning)"
27-
aria-label="Unknown application status"
27+
aria-label="Unknown workload status"
2828
role="image"
2929
/>
3030
{/if}

0 commit comments

Comments
 (0)