Splitting large data file for less cumbersome editing and IDE lag

This commit is contained in:
Jonathan
2025-06-22 20:48:33 -04:00
parent 1bc78306b8
commit c0ea4a094e
28 changed files with 4699 additions and 4599 deletions
+2 -2
View File
@@ -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();