Fixed after-installation state

This commit is contained in:
Thorsten Sommer 2025-05-30 17:18:43 +02:00
parent d165cbb038
commit 56eefa166e
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -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()