It appears that when a component is loaded/rendered using knockout.js, white space is generated.
I don't see it anywhere in my code for components but they are visible when I inspect elements. saying
""
If I delete it the white space disappears.
Is it a known issue to knockout.js? Or if it's not, where should I start from to solve this issue?
Example code would like look like this
<componentA>
"$#65279"
component contents ...
</componentA>
<componentB>
""$#65279"
<link ... ... .. ..
... actual c
</componentB>
as seen here, everytime component is loaded the blank space is generated.
This is only visible through F12 on browsers when I inspect the code I can't find it anywhere in the actual code file that's been written. I tried searching through code by copying the white space generated by the Unicode, but no luck.
It seems like its generated by knockout's component rendering part. Which part of knockout should I be looking into?
Thanks