Fix: ReportComponent.razor: Wrong variableName

This commit is contained in:
2026-02-19 19:24:51 +01:00
parent 71d8059ee7
commit 856cc04f64

View File

@@ -52,7 +52,7 @@
public Dictionary<string, object> ConstructParameterList(IReportable reportableEntity, object RenderModeBoundary) {
Dictionary<string, object> _parameters = new Dictionary<string, object>();
_parameters["ReportableEntity"] = _blackBoard;
_parameters["ReportableEntity"] = reportableEntity;
_parameters["RenderModeBoundary"] = RenderModeBoundary;
return _parameters;