Skip to content

Commit

Permalink
fix(kstep): icon titles [KHCP-9001]
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM committed Apr 15, 2024
1 parent f8a0e5d commit f549af8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/KStepper/KStep.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<li
:aria-current="state === 'active' ? 'step' : undefined"
:aria-current="state === 'active' ? 'step' : 'false'"
class="step"
:data-testid="`step-${state}`"
>
Expand All @@ -12,20 +12,20 @@
<CheckIcon
v-if="state === 'completed'"
:color="KUI_COLOR_TEXT_INVERSE"
decorative
:size="KUI_ICON_SIZE_40"
title="Completed"
/>
<ProgressIcon
v-else-if="state === 'pending'"
:color="KUI_COLOR_TEXT_PRIMARY"
decorative
:size="KUI_ICON_SIZE_40"
title="Pending"
/>
<CloseIcon
v-else-if="state === 'error'"
:color="KUI_COLOR_TEXT_INVERSE"
decorative
:size="KUI_ICON_SIZE_40"
title="Error"
/>
</div>

Expand Down

0 comments on commit f549af8

Please sign in to comment.