Skip to content

Commit

Permalink
Update Version for 8.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Apr 28, 2022
1 parent 6c9fd07 commit e2c6c4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Squidex/squidex/</PackageProjectUrl>
<PackageTags>Squidex HeadlessCMS</PackageTags>
<Version>8.10</Version>
<Version>8.11</Version>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public Task DescribeAsync(ISyncService sync, MarkdownWriter writer)

if (model.Clients.Count > 0)
{
var rows = model.Clients.Select(x => new object[] { x.Key, x.Value.Name, x.Value.Role }).OrderBy(x => x[0]).ToArray();
var rows = model.Clients.Select(x => new object?[] { x.Key, x.Value.Name, x.Value.Role }).OrderBy(x => x[0]).ToArray();

writer.H3("Clients");
writer.Paragraph($"{rows.Length} client(s).");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public MarkdownWriter Code(params string[] lines)
return this;
}

public MarkdownWriter Table(object[] header, object[][] rows)
public MarkdownWriter Table(object[] header, object?[][] rows)
{
var allRows = Enumerable.Repeat(header, 1).Union(rows);

Expand Down

0 comments on commit e2c6c4e

Please sign in to comment.