Breadcrumbs showing both left < and right > chevrons
I'm using the breadcrumbs blade component directly in a view, like this
Which is how the documentation recommends it. But it is showing up in my view like this (attached image)
Why is there a chevron left
<
next to each item? Shouldn't it just show a chevron right? >
I should note that I'm not using the panels package. Only the forms package in a custom livewire page.Solution:Jump to solution
Oh, I figured it out. I was missing the dir property in my html document.
...
5 Replies
looking at the breadcrumbs code from the vendor folder, I'm confused as to why there is a left and right chevrons on all items except the first one
I mean, the Panel Builder uses the same component, and those breadcrumbs look fine
Solution
Oh, I figured it out. I was missing the dir property in my html document.
The
'ltr:hidden'
should have been my first clueThx for sharing your solution.
I saw that it was generating both, but hiding accordingly. I didn't realize one had to define
ltr
/rtl
explicitly. π