Hey yall,
The breadcrumb element has an error in it when you select “icon” instead of “text” as the delimiter. When viewing the code I can see it’s because its referencing the old markup for icons instead of the new one. I was able to fix this error by adding the following code to the global css:
[data-x-icon-o] {
font-family: "FontAwesome" !important;
font-weight: 900;
}
[data-x-icon-o]:before {
content: attr(data-x-icon-o);
}
I just wanted to submit this to get someone’s eyes on it.
Thanks