Skip to content

Commit

Permalink
Update libs
Browse files Browse the repository at this point in the history
Report Boards
Save name from last step when closed by touch
  • Loading branch information
tiorac committed Oct 21, 2024
1 parent 064679a commit 7ab5748
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BlackDigital.Report.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@


<ItemGroup>
<PackageReference Include="System.IO.Packaging" Version="8.0.0" />
<PackageReference Include="System.IO.Packaging" Version="8.0.1" />
</ItemGroup>


Expand Down
4 changes: 3 additions & 1 deletion src/Sources/ModelPaginationReportSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ public override Task<bool> NextColumnAsync()

_columnPosition++;

if (_columnPosition >= (Properties?.Count() ?? 0))
var properties = ReportHelper.GetPropertiesAndAttributes<T>();

if (_columnPosition >= (properties?.Count() ?? 0))
return Task.FromResult(false);

int columnSize = _columnPosition + 1;
Expand Down

0 comments on commit 7ab5748

Please sign in to comment.