It appears that the if binding is not functioning as expected in my case. Below is a snippet of my template:
<div>
<span data-bind="text: name"></span>
<div data-bind="if: false ">+<span data-bind="text: priceFormatted"></span></div>
</div>
I have included if: false
as a test, but regardless of what I input there, the span continues to display. Any insights on what might be causing this issue?