We have had this application for many years. But suddenly this issue cropped up. The checkboxes have these unwanted icons out of the blue. Not sure what went wrong. This issue appeared in all DEV/UAT/PROD environments, even without any recent deployments. So I am guessing something to do with CSS/FA Icons which is getting updated live. But I am not sure where to look/start.
code snippet below :
<ul class="list-group filterby">
<li class="list-group-item subtitle">By Metal</li>
<li class="list-group-item"><p:selectManyCheckbox
layout="grid" columns="1"
value="#{physicalProductBean.selectedCurrencyPair}"
valueChangeListener="#{physicalProductBean.selectedCurrencyChanged}">
<f:selectItems
value="#{physicalProductBean.availableCurrencyPairsProduct}"
var="eachCurrency" itemLabel="#{eachCurrency.symbol}"
itemValue="#{eachCurrency.id}" />
<p:ajax update=":physicalProductForm:productListing"></p:ajax>
</p:selectManyCheckbox></li>
</ul>
Any solutions/suggestions highly appreciated