This commit is contained in:
2026-06-04 12:07:14 -04:00
parent c1f041b4f6
commit 02cae92797
31 changed files with 1709 additions and 13 deletions
@@ -98,12 +98,12 @@
{
base.OnInitialized();
MyDialogService.Subscribe(StateHasChanged);
MyDialogService.Subscribe(() => InvokeAsync(StateHasChanged));
}
void IDisposable.Dispose()
{
MyDialogService.Unsubscribe(StateHasChanged);
MyDialogService.Unsubscribe(() => InvokeAsync(StateHasChanged));
}
+1 -1
View File
@@ -19,7 +19,7 @@
void OnUpdate()
{
StateHasChanged();
InvokeAsync(StateHasChanged);
}
}
+1 -1
View File
@@ -23,7 +23,7 @@
void OnUpdate()
{
StateHasChanged();
InvokeAsync(StateHasChanged);
}
}
+1 -1
View File
@@ -22,7 +22,7 @@
void OnUpdate()
{
StateHasChanged();
InvokeAsync(StateHasChanged);
}
}
+15 -2
View File
@@ -15,8 +15,21 @@
protected override async Task OnInitializedAsync()
{
await searchService.Load();
await jsRuntime.InvokeVoidAsync("SetDotnetReference", DotNetObjectReference.Create(this));
try
{
await searchService.Load();
}
catch
{
}
try
{
await jsRuntime.InvokeVoidAsync("SetDotnetReference", DotNetObjectReference.Create(this));
}
catch
{
}
}
+1 -1
View File
@@ -54,7 +54,7 @@
void OnUpdate()
{
StateHasChanged();
InvokeAsync(StateHasChanged);
}
}