Fix missing DefaultValue for OuterBoundInclusive property in For activity (#6680)
* Initial plan for issue * Add DefaultValue=true to OuterBoundInclusive InputAttribute Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com>
This commit is contained in:
parent
a0b1b299c7
commit
830a04f325
|
|
@ -52,7 +52,7 @@ public class For : Activity
|
|||
/// <summary>
|
||||
/// Controls whether the end step is upper/lowerbound inclusive or exclusive. True (inclusive) by default.
|
||||
/// </summary>
|
||||
[Input(Description = "Controls whether the end step is upper/lowerbound inclusive or exclusive. True (inclusive) by default.")]
|
||||
[Input(Description = "Controls whether the end step is upper/lowerbound inclusive or exclusive. True (inclusive) by default.", DefaultValue = true)]
|
||||
public Input<bool> OuterBoundInclusive { get; set; } = new(true);
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in a new issue