mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-20 22:32:56 +00:00
Fixed after-installation state
This commit is contained in:
parent
d165cbb038
commit
56eefa166e
@ -92,7 +92,7 @@ public partial class About : MSGComponentBase
|
||||
break;
|
||||
}
|
||||
|
||||
this.StateHasChanged();
|
||||
await this.InvokeAsync(this.StateHasChanged);
|
||||
}
|
||||
|
||||
private string PandocButtonText
|
||||
@ -111,7 +111,9 @@ public partial class About : MSGComponentBase
|
||||
|
||||
private async Task ShowPandocDialog()
|
||||
{
|
||||
await this.DialogService.ShowAsync<PandocDialog>(T("Pandoc Installation"), DialogOptions.FULLSCREEN);
|
||||
var dialogReference = await this.DialogService.ShowAsync<PandocDialog>(T("Pandoc Installation"), DialogOptions.FULLSCREEN);
|
||||
await dialogReference.Result;
|
||||
await this.DeterminePandocVersion();
|
||||
}
|
||||
|
||||
private async Task CopyStartupLogPath()
|
||||
|
Loading…
Reference in New Issue
Block a user