Adding MudBlazor UI with new Nav

This commit is contained in:
2022-08-27 21:46:52 -04:00
parent a00af60fa4
commit 404db2b862
18 changed files with 128 additions and 74 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
@implements IDisposable;
@inject IDialogService DialogService
@inject IMyDialogService MyDialogService
<ConfirmationDialogComponent></ConfirmationDialogComponent>
@@ -9,12 +9,12 @@
protected override void OnInitialized()
{
base.OnInitialized();
DialogService.Subscribe(OnUpdate);
MyDialogService.Subscribe(OnUpdate);
}
void IDisposable.Dispose()
{
DialogService.Unsubscribe(OnUpdate);
MyDialogService.Unsubscribe(OnUpdate);
}
void OnUpdate()