Renamed variable

This commit is contained in:
Thorsten Sommer 2025-05-30 14:06:09 +02:00
parent 63a4c84772
commit 7dca3a57d4
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<MudDialog> <MudDialog>
<DialogContent> <DialogContent>
@if (this.showInstallPage) @if (this.showInstallationPage)
{ {
<div class="mb-4"> <div class="mb-4">
<MudJustifiedText Typo="Typo.body1" Class="mb-2"> <MudJustifiedText Typo="Typo.body1" Class="mb-2">
@ -177,7 +177,7 @@
} }
</DialogContent> </DialogContent>
<DialogActions> <DialogActions>
@if (this.showInstallPage) @if (this.showInstallationPage)
{ {
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled"> <MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
Cancel Cancel

View File

@ -34,7 +34,7 @@ public partial class PandocDialog : ComponentBase
private static string LATEST_PANDOC_VERSION = string.Empty; private static string LATEST_PANDOC_VERSION = string.Empty;
private PandocInstallation pandocInstallation; private PandocInstallation pandocInstallation;
private bool showInstallPage; private bool showInstallationPage;
private string? licenseText; private string? licenseText;
private bool isLoadingLicence; private bool isLoadingLicence;
private int selectedInstallerIndex = SelectInstallerIndex(); private int selectedInstallerIndex = SelectInstallerIndex();
@ -70,7 +70,7 @@ public partial class PandocDialog : ComponentBase
await this.DialogService.ShowAsync<PandocDialog>("pandoc dialog"); await this.DialogService.ShowAsync<PandocDialog>("pandoc dialog");
} }
private void ProceedToInstallation() => this.showInstallPage = true; private void ProceedToInstallation() => this.showInstallationPage = true;
private async Task RejectLicense() private async Task RejectLicense()
{ {