I set up a bootstrap(v5.1) popover on an svg icon, but the arrow icon direction is incorrect. Check out the code snippet below to see how it's configured;
@create text & @modifytext are placeholders for dynamic content.
<svg height="20" width="20" data-container="body" data-bs-toggle="popover" data-bs-placement="right" title="Admin Info" data-bs-content="@createtext @modifytext" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="info-circle" class="text-blue float-start svg-inline--fa fa-info-circle fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path fill="currentColor" .......></path>
</svg>
https://i.sstatic.net/FQMB4.png
Upon inspection, you'll notice that the arrow points in the wrong direction. Is there a way to resolve this issue?