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:
Copilot 2025-05-24 21:32:46 +02:00 committed by GitHub
parent a0b1b299c7
commit 830a04f325
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>