If you are using a StackPanel and you have an Each loop below other elements, the resulting elements of the loop will be unexpectedly pushed to the top of the StackPanel.
In the following example…
<StackPanel>
<Panel>
<Text Value="Filter by Category:" />
</Panel>
<Each Items="{categories}">
<Text Value="{title}" />
</Each>
</StackPanel>
… the categories will be listed and then it will say “Filter by Category:” below them.
You can deal with this bug by putting an additional StackPanel around the Each, but obviously that’s not an ideal long-term solution.
I am on Fuse v0.9.8 (build 5700).
