Performance improvement - set IsFixed="true" on ModuleState CascadingValues so that Blazor will not monitor them for changes

This commit is contained in:
Shaun Walker
2021-02-05 09:37:10 -05:00
parent 988639b603
commit c3e7fa67f3
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
@namespace Oqtane.UI
<CascadingValue Value="@_moduleState">
<CascadingValue Value="@_moduleState" IsFixed="true">
@DynamicComponent
</CascadingValue>