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 31dabf39 fix width of nested task in workflow ui 31dabf39 is described below commit 31dabf39ac909c9b2da2caf1d2c133514817df90 Author: Alex Heneveld <a...@cloudsoft.io> AuthorDate: Wed May 29 12:15:45 2024 +0100 fix width of nested task in workflow ui --- .../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 1dc82319..13d49970 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 @@ -196,7 +196,7 @@ <div class="more-space-above"> <div class="data-row" ng-if="uniqueSubworkflow"> - <workflow-steps nested="true" workflow="uniqueSubworkflow" style="flex: 1 1 auto; margin-left: -2em; margin-top: -24px; margin-right: -1em;"/> + <workflow-steps nested="true" workflow="uniqueSubworkflow" style="flex: 1 1 auto; margin-left: -2em; margin-top: -24px; margin-right: -1em; width: 100%;"/> </div> <div class="data-row" ng-if="stepContext.error"><div class="A">Error</div> <div class="B {{ vm.classForCodeMaybeMultiline(stepContext.error) }}">{{ vm.yamlOrPrimitive(stepContext.error) }}</div></div>