Skip to content

Commit

Permalink
Merge branch '3.x' into 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin committed Feb 2, 2025
2 parents 453ebd2 + a25e6aa commit 9313f12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/schemas/resources/views/components/wizard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,12 @@ class="h-full w-full text-gray-200 rtl:rotate-180 dark:text-white/5"
})
"
@endif
x-show="! isLastStep()"
x-bind:class="{ 'hidden': isLastStep(), 'block': !isLastStep() }"
>
{{ $nextAction }}
</span>

<span x-show="isLastStep()">
<span x-bind:class="{ 'hidden': !isLastStep(), 'block': isLastStep() }">
{{ $getSubmitAction() }}
</span>
</div>
Expand Down

0 comments on commit 9313f12

Please sign in to comment.