Skip to content

Commit

Permalink
Create FieldIdentifier when no ValueExpression set (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Dec 14, 2023
1 parent 308aaed commit ddae17f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Core/Components/Base/FluentInputBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,10 @@ public override Task SetParametersAsync(ParameterView parameters)
{
FieldIdentifier = FieldIdentifier.Create(ValueExpression);
}

else if (ValueChanged.HasDelegate)
{
FieldIdentifier = FieldIdentifier.Create(() => Value);
}

if (CascadedEditContext != null)
{
Expand Down

0 comments on commit ddae17f

Please sign in to comment.