@code { [Parameter] public WebReport WebReport { get; set; } string source; protected override void OnParametersSet() { base.OnParametersSet(); var designerLocale = WebReport.Designer.Locale.IsNullOrWhiteSpace() ? "" : $"&lang={WebReport.Designer.Locale}"; source = $"{WebReport.Designer.Path}?uuid={WebReport.ID}{WebUtils.GetARRAffinity()}{designerLocale}"; } }