Skip to content

Commit d740616

Browse files
authored
Add space before @lm_attrs
Related to issue #240 #241 Caused by #237 Space was added before the @lm_attrs in the list item, but was missed in the anchor tag.
1 parent f2ae50c commit d740616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Lavary/Menu/resources/views/bootstrap-navbar-items.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@foreach($items as $item)
22
<li @lm_attrs($item) @if($item->hasChildren()) class="nav-item dropdown" @endif @lm_endattrs>
3-
@if($item->link) <a@lm_attrs($item->link) @if($item->hasChildren()) class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" @else class="nav-link" @endif @lm_endattrs href="{!! $item->url() !!}">
3+
@if($item->link) <a @lm_attrs($item->link) @if($item->hasChildren()) class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" @else class="nav-link" @endif @lm_endattrs href="{!! $item->url() !!}">
44
{!! $item->title !!}
55
@if($item->hasChildren()) <b class="caret"></b> @endif
66
</a>

0 commit comments

Comments
 (0)