Hi,

If you search something with a space, the space disapear in the search
result.

I found this bug on SearchFilter bead:

On SerchFilter, replace this line:
ir.text = "<span style='display:contents;'>" + (filterText != "" ?
decorateText(textData,
textData.toUpperCase().indexOf(filterText.toUpperCase()),
filterText.length) : textData ) + "</span>";

To this and now seems to work perfect:
ir.text = "<span>" + (filterText != "" ? decorateText(textData,
textData.toUpperCase().indexOf(filterText.toUpperCase()),
filterText.length) : textData ) + "</span>";

Carlos, said that this is temporarily due some changes requested by Warren.

I want to write this for future reference when be safe to remove this style.

Reply via email to