using System.Collections.Generic; namespace FastReport.Web.Blazor.Components.Internal { public partial class ModalContainer { private string OkButtonErrorClass { get => WebReport.HasValidationError ? "fr-webreport-popup-content-btn-disabled" : ""; } readonly Dictionary ExportParameters = new Dictionary(); private void CancelClick() { ExportParameters.Clear(); WebReport.EnableModalDialog = false; } } }