Fixed the dialog re-call to use the correct title and format

This commit is contained in:
Thorsten Sommer 2025-05-30 14:40:23 +02:00
parent 7f19a6b07d
commit 4635fe732a
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -66,7 +66,7 @@ public partial class PandocDialog : ComponentBase
await Pandoc.InstallAsync(this.RustService); await Pandoc.InstallAsync(this.RustService);
this.MudDialog.Close(DialogResult.Ok(true)); this.MudDialog.Close(DialogResult.Ok(true));
await this.DialogService.ShowAsync<PandocDialog>("pandoc dialog"); await this.DialogService.ShowAsync<PandocDialog>("Pandoc Installation", DialogOptions.FULLSCREEN);
} }
private void ProceedToInstallation() => this.ShowInstallationPage = true; private void ProceedToInstallation() => this.ShowInstallationPage = true;