Skip to content

Commit 88887f7

Browse files
committed
fix(Dashboard): fixed if transitions
Signed-off-by: Jean-Baptiste Bianchi <jb.bianchi@neuroglia.io>
1 parent fb2169e commit 88887f7

File tree

2 files changed

+185
-187
lines changed

2 files changed

+185
-187
lines changed

src/dashboard/Synapse.Dashboard/Components/WorkflowDiagram/StartNodeViewModel.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,7 @@ namespace Synapse.Dashboard.Components;
1818
/// <summary>
1919
/// Represents the object that holds the data required to render the view of a workflow's start node
2020
/// </summary>
21-
public class StartNodeViewModel(bool hasSuccessor = false)
21+
public class StartNodeViewModel()
2222
: WorkflowNodeViewModel("start-node", new() { CssClass = "start-node", Shape = NodeShape.Circle, Width = WorkflowGraphBuilder.StartEndNodeRadius, Height = WorkflowGraphBuilder.StartEndNodeRadius })
2323
{
24-
25-
/// <summary>
26-
/// Gets a boolean indicating whether or not the node has a successor
27-
/// </summary>
28-
public bool HasSuccessor { get; } = hasSuccessor;
29-
3024
}

0 commit comments

Comments
 (0)