mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-21 03:52:57 +00:00
Renamed variable
This commit is contained in:
parent
63a4c84772
commit
7dca3a57d4
@ -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
|
||||||
|
@ -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()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user