mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-20 16:52:57 +00:00
Renamed variable
This commit is contained in:
parent
63a4c84772
commit
7dca3a57d4
@ -1,6 +1,6 @@
|
||||
<MudDialog>
|
||||
<DialogContent>
|
||||
@if (this.showInstallPage)
|
||||
@if (this.showInstallationPage)
|
||||
{
|
||||
<div class="mb-4">
|
||||
<MudJustifiedText Typo="Typo.body1" Class="mb-2">
|
||||
@ -177,7 +177,7 @@
|
||||
}
|
||||
</DialogContent>
|
||||
<DialogActions>
|
||||
@if (this.showInstallPage)
|
||||
@if (this.showInstallationPage)
|
||||
{
|
||||
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
|
||||
Cancel
|
||||
|
@ -34,7 +34,7 @@ public partial class PandocDialog : ComponentBase
|
||||
private static string LATEST_PANDOC_VERSION = string.Empty;
|
||||
|
||||
private PandocInstallation pandocInstallation;
|
||||
private bool showInstallPage;
|
||||
private bool showInstallationPage;
|
||||
private string? licenseText;
|
||||
private bool isLoadingLicence;
|
||||
private int selectedInstallerIndex = SelectInstallerIndex();
|
||||
@ -70,7 +70,7 @@ public partial class PandocDialog : ComponentBase
|
||||
await this.DialogService.ShowAsync<PandocDialog>("pandoc dialog");
|
||||
}
|
||||
|
||||
private void ProceedToInstallation() => this.showInstallPage = true;
|
||||
private void ProceedToInstallation() => this.showInstallationPage = true;
|
||||
|
||||
private async Task RejectLicense()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user