This is an automated email from the ASF dual-hosted git repository.
heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git
The following commit(s) were added to refs/heads/master by this push:
new c230bc36 fix display of output for current step (if error handler
running)
c230bc36 is described below
commit c230bc368abe19e4aee1c788e22e1d3cec3dfe75
Author: Alex Heneveld <[email protected]>
AuthorDate: Sun Oct 23 17:53:14 2022 +0100
fix display of output for current step (if error handler running)
---
.../app-inspector/app/components/workflow/workflow-step.template.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ui-modules/app-inspector/app/components/workflow/workflow-step.template.html
b/ui-modules/app-inspector/app/components/workflow/workflow-step.template.html
index 8d8f3e0f..28c01fdf 100644
---
a/ui-modules/app-inspector/app/components/workflow/workflow-step.template.html
+++
b/ui-modules/app-inspector/app/components/workflow/workflow-step.template.html
@@ -197,7 +197,7 @@
<div class="data-row nested"
ng-if="stepContext.otherMetadata" ng-repeat="(key,value) in
stepContext.otherMetadata" id="$key">
<div class="A">{{ key }}</div> <div class="B
multiline-code">{{ vm.yamlOrPrimitive(value) }}</div>
</div>
- <div class="data-row nested"
ng-if="!isCurrentMaybeInactive && stepContext.output"><div
class="A">Output</div> <div class="B multiline-code">{{
vm.yaml(stepContext.output) }}</div></div>
+ <div class="data-row nested"
ng-if="stepContext.output"><div class="A">Output</div> <div class="B
multiline-code">{{ vm.yaml(stepContext.output) }}</div></div>
</div>
</div>