Skip to content

Commit e1db78b

Browse files
andre8244Copilot
andauthored
fix: review by Copilot
Co-authored-by: Copilot <[email protected]>
1 parent 56a1a6a commit e1db78b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/NeStepper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const { totalSteps, currentStep, stepLabel } = defineProps<{
2020
<div class="mt-2 flex flex-row">
2121
<div v-for="i in range(1, totalSteps + 1)" :key="i" class="flex grow basis-0 justify-center">
2222
<p
23-
v-if="i == currentStep"
23+
v-if="i === currentStep"
2424
class="text-primary-700 dark:text-primary-500 text-xs font-medium"
2525
>
2626
{{ stepLabel }} {{ currentStep }}/{{ totalSteps }}

0 commit comments

Comments
 (0)