diff --git a/app/MindWork AI Studio/Pages/About.razor.cs b/app/MindWork AI Studio/Pages/About.razor.cs index 3b9d5727..83925dbc 100644 --- a/app/MindWork AI Studio/Pages/About.razor.cs +++ b/app/MindWork AI Studio/Pages/About.razor.cs @@ -95,8 +95,16 @@ public partial class About : MSGComponentBase this.StateHasChanged(); } - private async Task ShowPandocDialog() => await this.DialogService.ShowAsync(T("Pandoc Installation"), DialogOptions.FULLSCREEN); - + private async Task ShowPandocDialog() + { + var dialogParameters = new DialogParameters + { + { x => x.ShowInstallationPage, true }, + }; + + await this.DialogService.ShowAsync(T("Pandoc Installation"), dialogParameters, DialogOptions.FULLSCREEN); + } + private async Task CopyStartupLogPath() { await this.RustService.CopyText2Clipboard(this.Snackbar, this.logPaths.LogStartupPath);