Add a simple cancel button to the install page

This commit is contained in:
Thorsten Sommer 2025-05-30 14:03:47 +02:00
parent 3a424d72c5
commit ad5955969f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -179,6 +179,10 @@
<DialogActions> <DialogActions>
@if (this.showInstallPage) @if (this.showInstallPage)
{ {
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
Cancel
</MudButton>
<MudButton Color="Color.Warning" OnClick="@this.RejectLicense" Variant="Variant.Filled" Size="Size.Medium"> <MudButton Color="Color.Warning" OnClick="@this.RejectLicense" Variant="Variant.Filled" Size="Size.Medium">
Reject GPL licence Reject GPL licence
</MudButton> </MudButton>