Splitting large data file for less cumbersome editing and IDE lag
This commit is contained in:
@@ -145,7 +145,7 @@
|
||||
protected override void OnInitialized()
|
||||
{
|
||||
base.OnInitialized();
|
||||
entity = DATA.Get()[entityDialogService.GetEntityId() ?? string.Empty];
|
||||
entity = EntityData.Get()[entityDialogService.GetEntityId() ?? string.Empty];
|
||||
|
||||
entityDialogService.Subscribe(OnUpdate);
|
||||
}
|
||||
@@ -157,7 +157,7 @@
|
||||
|
||||
void OnUpdate()
|
||||
{
|
||||
entity = DATA.Get()[entityDialogService.GetEntityId()];
|
||||
entity = EntityData.Get()[entityDialogService.GetEntityId()];
|
||||
refresh++;
|
||||
|
||||
StateHasChanged();
|
||||
|
||||
Reference in New Issue
Block a user