From 830a04f325bfd698d01cd8b8e4d6eeadcf99aedc Mon Sep 17 00:00:00 2001
From: Copilot <198982749+Copilot@users.noreply.github.com>
Date: Sat, 24 May 2025 21:32:46 +0200
Subject: [PATCH] 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>
---
src/modules/Elsa.Workflows.Core/Activities/For.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/Elsa.Workflows.Core/Activities/For.cs b/src/modules/Elsa.Workflows.Core/Activities/For.cs
index 97bb03309..a607c73e6 100644
--- a/src/modules/Elsa.Workflows.Core/Activities/For.cs
+++ b/src/modules/Elsa.Workflows.Core/Activities/For.cs
@@ -52,7 +52,7 @@ public class For : Activity
///
/// 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.")]
+ [Input(Description = "Controls whether the end step is upper/lowerbound inclusive or exclusive. True (inclusive) by default.", DefaultValue = true)]
public Input OuterBoundInclusive { get; set; } = new(true);
///