Checklist
Description
There is a possible XSS issue when building the dropdown. Escaped HTML from the breadcrumbs item is re-inserted in the dropdown version as text.
How can we reproduce this bug?
Uses this HTML as your breadcrumbs
<ol class="breadcrumb app-breadcrumb breadcrumb-left">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><script>alert('xss')</script></li>
</ol>
What did you expect to happen?
Escaped HTML should remain escaped
What happened instead?
script tags was executed.