Skip to content

Commit

Permalink
fix: indexinfo was never set
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Mar 22, 2024
1 parent fd81cea commit 4679c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shared/V2/DynamicPropertyBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ internal DynamicPropertyBuilder WithMaxLength(int? v)

internal DynamicPropertyBuilder WithIndex(IndexInfo indexInfo)
{
IndexInfo = IndexInfo;
IndexInfo = indexInfo;
return this;
}
public EnumBuilder enumbuilder { get; private set; }
Expand Down

0 comments on commit 4679c24

Please sign in to comment.