Skip to content

Commit

Permalink
Merge pull request #30 from ravendb/bugfix/#23
Browse files Browse the repository at this point in the history
Fixed setting 'checkbox' custom fields for backlog items
  • Loading branch information
AKlaus authored Jun 8, 2021
2 parents 104ece8 + 0d890e0 commit 1e21b71
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ select a
CustomFieldType.Text or CustomFieldType.Url => a.GetValue<string>(),
CustomFieldType.Numeric => a.GetValue<decimal>(),
CustomFieldType.Date => a.GetValue<DateTime>(),
CustomFieldType.Checkbox => a.GetValue<bool>(),
_ => throw new ArgumentOutOfRangeException($"Unsupported field type: {field.FieldType}")
};
if (obj is null)
Expand Down

0 comments on commit 1e21b71

Please sign in to comment.