Skip to content

Commit 91e4441

Browse files
author
Donna-Marie Smith
committed
Final PO Review
1 parent 1210ca6 commit 91e4441

File tree

11 files changed

+86
-50
lines changed

11 files changed

+86
-50
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Bottom Panel"
33
linkTitle: "Bottom Panel"
4-
description: "Manage Variables and view debug execution information."
4+
description: "View executions, identify issues preventing the flow from being debugged, and create and manage variables."
55
weight: 50
66
---

content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/executions-grid.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
---
22
title: "Executions Grid"
33
linkTitle: "Executions Grid"
4-
description: "View the executions that are being debugged"
4+
description: "View executions being debugged."
55
weight: 20
66
---
77

88
# {{% param title %}}
99

1010
## Summary
1111

12-
The Executions Grid displays information about all the [flows][What is a Flow?] that are currently [executing][What is an Execution?], paused, or errored in the Flow Editor.
12+
The Executions Grid displays information about all the [flows][What is a Flow?] that are currently being debugged by the developer.
1313

1414
## Anatomy
1515

1616
{{< figure src="/images/Flow Editor - Executions Grid.png" title="Executions Grid" >}}
1717

18-
The Executions Grid is automatically displayed when in Debug Mode and a flow is executing or paused from executing; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
18+
The Executions Grid is automatically displayed when in `Debug` mode and a flow is `Running` or `Paused`; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
1919

20-
Flows that are Running or Paused are shown with a green background; flows that have raised an [exception][What is an Exception?] are shown with a red background.
20+
Flows that are `Running` or `Paused` are shown with a green background; flows that have raised an [exception][What is an Exception?] are shown with a red background.
2121

22-
An execution may be selected by clicking on its row in the Executions Grid and can be controlled by a set of icons on the top right of the Executions Grid. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected execution; greyed-out action icons not applicable to the selected executions’ state.
22+
An [execution][What is an Execution?] may be selected by clicking on its row and can be controlled by action icons at the top right of the Executions Grid. Multiple executions can be selected using `Ctrl + Click` or `Shift + Click`. Selected executions are indicated with a darker background and the actions available are dependent on the state of the selected executions; greyed-out action icons are not applicable to the selected executions’ state.
2323

2424
## Actions
2525

2626
### Continue the Execution
2727

28-
Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected execution to continue until the flow ends, a breakpoint is reached, or an exception has occurred causing the flow to pause. This action is only available for paused executions.
28+
Clicking the {{< image src="/images/Flow Editor - Continue Execution.png" >}} icon causes the selected executions to continue until the flow ends, a breakpoint is reached, or [`Break on exception`][Execution Options] is enabled and an exception has occurred causing the flow to pause. This action is only available for paused executions.
2929

3030
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
3131

3232
### Pause the Execution
3333

34-
Clicking the {{< image src="/images/Flow Editor - Pause Execution.png" >}} icon pauses the selected execution. This action is only available for running executions.
34+
Clicking the {{< image src="/images/Flow Editor - Pause Execution.png" >}} icon pauses the selected executions. This action is only available for running executions.
3535

3636
### Step the Execution
3737

38-
Clicking the {{< image src="/images/Flow Editor - Step Execution.png" >}} icon causes the selected execution to execute the next [block][What is a Block?] and pause again. This action is only available for paused executions.
38+
Clicking the {{< image src="/images/Flow Editor - Step Execution.png" >}} icon causes the selected executions to execute the next [block][What is a Block?] and pause again. This action is only available for paused executions.
3939

4040
See the [Step the Execution][Step the Execution tutorial] tutorial for a step-by-step guide.
4141

4242
### Stop the Execution
4343

44-
Clicking the {{< image src="/images/Flow Editor - Stop Execution.png" >}} icon terminates the execution of the selected execution, and after a few seconds, removes them from Executions Grid. This action is available for all executions, regardless of their state.
44+
Clicking the {{< image src="/images/Flow Editor - Stop Execution.png" >}} icon stops the the selected executions, and after a few seconds, removes them from Executions Grid. This action is available for all executions, regardless of their state.
4545

4646
See the [Continue and Stop the Execution][Continue and Stop the Execution tutorial] tutorial for a step-by-step guide.
4747

@@ -51,15 +51,17 @@ Clicking the {{< image src="/images/Flow Editor - Go To.png" >}} icon causes the
5151

5252
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
5353

54-
### Start tracking
54+
### Start Tracking
5555

56-
Clicking the {{< image src="/images/Flow Editor - Start Tracking.png" >}} icon causes the Flow Editor to follow the flow execution, opening any necessary workspaces. The execution is not dynamically tracked if the Show execution on workspace Execution option is not selected, or a second execution is started concurrently in the Flow Editor. This action is available for any execution not being tracked.
56+
Clicking the {{< image src="/images/Flow Editor - Start Tracking.png" >}} icon causes the Flow Editor to follow the selected execution, opening any necessary workspaces. This action is available for any execution not being tracked.
57+
58+
Note: When an execution is started, if no other executions are being tracked, it will be automatically tracked if [`Show execution on workspace`][Execution Options] is enabled.
5759

5860
See the [Start Tracking][Start Tracking tutorial] tutorial for a step-by-step guide.
5961

60-
### Stop tracking
62+
### Stop Tracking
6163

62-
Clicking the {{< image src="/images/Flow Editor - Stop Tracking.png" >}} icon causes the tracking of the execution to stop, and the Flow Editor will not maintain focus on the execution. This action is available for any execution being tracked.
64+
Clicking the {{< image src="/images/Flow Editor - Stop Tracking.png" >}} icon causes the tracking of the execution to stop, and the Flow Editor will not follow the selected execution. This action is available for any execution being tracked.
6365

6466
See the [Stop Tracking and Go To][Stop Tracking and Go To tutorial] tutorial for a step-by-step guide.
6567

@@ -101,6 +103,7 @@ None
101103

102104
[Blocks]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.MainDoc" >}}
103105
[Exceptions]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Exceptions.MainDoc" >}}
106+
[Execution Options]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.MainPanel.ExecutionOptions" >}}
104107
[Executions]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Executions.MainDoc" >}}
105108
[Flows]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.MainDoc" >}}
106109
[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}

content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/messages-grid.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: "Messages Grid"
33
linkTitle: "Messages Grid"
4-
description: "TODO"
5-
weight: 40
4+
description: "Identify issues preventing a flow from being debugged."
5+
weight: 30
66
---
77

88
# {{% param title %}}
@@ -17,21 +17,21 @@ The Messages Grid lists any [issues][What is a Message?] preventing a [flow][Wha
1717

1818
The Messages Grid is automatically displayed if there are any issues when attempting to debug a flow; however, it may be manually opened, or closed any time by clicking the Open/Close handle or resized by dragging the handle up or down.
1919

20-
Each error message identifies the location of the error, a summary of the error, and a detailed explanation.
20+
Each message identifies the location of the issue, a summary of the issue, and a detailed explanation.
2121

2222
## Actions
2323

24-
### Navigate to Property with Error
24+
### Navigate to Issue
2525

26-
To locate the error in the flow, double-click on the error. This will automatically navigate to, and select, the [block][What is a Block?] containing the error. The [Property Editor][] will be opened and the [property][What is a Block Property?] containing the error will be selected.
26+
If the issue in the flow is related to a misconfigured block [property][What is a Block Property?], double-clicking on the message will automatically navigate to, and select, the [block][What is a Block?] with the issue, open the [Property Editor][] and select the property causing the issue.
2727

2828
See the [Messages Grid][Messages Grid tutorial] tutorial for a step-by-step guide.
2929

3030
## Remarks
3131

3232
### Known Limitations
3333

34-
* The parser is only run when flows are executed. If the flow is not debugged in the Flow Editor before the flow is packaged and published, when an attempt is made to execute the published flow, the parser on the application node will run the parser and any errors raised will result in the flow execution failing and an error message returned in the REST response.
34+
* Issues with misconfigured input variables in the [Settings Editor][] cannot be navigated to.
3535

3636
## See Also
3737

@@ -51,6 +51,7 @@ See the [Messages Grid][Messages Grid tutorial] tutorial for a step-by-step guid
5151
[Flows]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.MainDoc" >}}
5252
[Messages]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Messages.MainDoc" >}}
5353
[Property Editor]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.RightPanel.PropertyEditor" >}}
54+
[Settings Editor]: {{< url path="Cortex.Guides.UserGuides.UserInterfaces.Gateway.Dev.FlowEditor.RightPanel.SettingsEditor" >}}
5455
[What is a Block?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.WhatIsABlock.MainDoc" >}}
5556
[What is a Block Property?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Blocks.BlockProperties.WhatIsABlockProperty.MainDoc" >}}
5657
[What is a Flow?]: {{< url path="Cortex.Reference.Concepts.Fundamentals.Flows.WhatIsAFlow.MainDoc" >}}

content/en/docs/2025.3/Guides/user-guides/user-interfaces/gateway/dev/flow-editor/bottom-panel/overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
22
title: "Overview"
33
linkTitle: "Overview"
4-
description: "Summary and Anatomy of the Bottom Panel"
4+
description: "Summary and anatomy of the Bottom Panel."
55
weight: 10
66
---
77

88
# {{% param title %}}
99

1010
## Summary
1111

12-
The Bottom Panel allows the management of [variables][What is a Variable?], displays the current [executions][What is an Execution?] being debugged and any [issues][What is a Message?] preventing the [flow][What is a Flow?] from being debugged.
12+
The Bottom Panel displays the current [executions][What is an Execution?] being debugged, any [issues][What is a Message?] preventing the [flow][What is a Flow?] from being debugged and also allows the management of [variables][What is a Variable?].
1313

1414
## Anatomy
1515

1616
{{< figure src="/images/Flow Editor - Bottom Panel.png" title="Bottom Panel" >}}
1717

1818
The 3 tabs that form the Bottom Panel are:
1919

20-
* Executions (default) - displays the [Executions Grid][] listing current [executions][What is an Execution?] being debugged by the user.
21-
* Messages - displays the [Messages Grid][] listing [issues][What is a Message?] preventing the flow from being debugged.
22-
* Variables - displays the [Variables Grid][] enabling the management of [variables][What is a Variable?].
20+
* Executions (default) - displays the [Executions Grid][] listing current executions being debugged by the developer.
21+
* Messages - displays the [Messages Grid][] listing issues preventing the flow from being debugged.
22+
* Variables - displays the [Variables Grid][] enabling the management of variables.
2323

2424
## See Also
2525

0 commit comments

Comments
 (0)