Using the treeview control works when I am running in debug mode, but it doesn't display at all when running in Release. I've verified that I am getting data in both modes, it's just not displaying anything at all. The other syncfusion controls on the page seem to work fine in either mode.
<SfTreeView @ref="tree" TValue="LocalityViewModel" CssClass="myViewer"
AutoCheck="true" ShowCheckBox="true">
<TreeViewFieldsSettings TValue="LocalityViewModel" Id="Id" DataSource="@localityViewModels"
IsChecked="IsChecked" Text="Name" ParentID="ParentId" HasChildren="HasSubFolders"
Expanded="Expanded"></TreeViewFieldsSettings>
</SfTreeView>