Skip to content

Commit 6e2dcef

Browse files
committed
Don’t show separator of hidden steps
1 parent ee78995 commit 6e2dcef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/default/layouts/navigation.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
wire:key="{{ $step->id() }}-navigation"
66
class="flex items-center whitespace-nowrap gap-x-3"
77
>
8+
@if(!$loop->first)
9+
<span class="text-gray-300 select-none" aria-hidden="true">/</span>
10+
@endif
11+
812
<button
913
type="button"
1014
class="
@@ -23,10 +27,6 @@ class="
2327
>
2428
{{ $step->display() }}
2529
</button>
26-
27-
@if(!$loop->last)
28-
<span class="text-gray-300 select-none" aria-hidden="true">/</span>
29-
@endif
3030
</li>
3131
@endforeach
3232
</ol>

0 commit comments

Comments
 (0)