5722ad4167
- porting blazor 8.0 - riorganizzazione area components - add componenti da 6 - spostamento ver 6 a old (migrata comunque)
20 lines
471 B
Plaintext
20 lines
471 B
Plaintext
@page "/ResetAll"
|
|
@page "/reset-all"
|
|
|
|
@using GPW.CORE.WRKLOG.Data;
|
|
<h3>ResetAll</h3>
|
|
@inject LicenseService LicServ
|
|
@inject NavigationManager NavMan
|
|
|
|
<LoadingData DisplaySize="LoadingData.CtrlSize.Large" DisplayMode="LoadingData.SpinMode.Growl"></LoadingData>
|
|
|
|
|
|
@code {
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
var resetDone = await LicServ.RefreshLicense();
|
|
await Task.Delay(1000);
|
|
NavMan.NavigateTo("ForceReset");
|
|
}
|
|
}
|