diff --git a/app/components/pipeline-event-row/component.js b/app/components/pipeline-event-row/component.js index 9a1c5515e..308ddd2a9 100644 --- a/app/components/pipeline-event-row/component.js +++ b/app/components/pipeline-event-row/component.js @@ -49,7 +49,7 @@ export default Component.extend({ ).forEach(([propertyName, propertyVal]) => { const keys = Object.keys(propertyVal); - if (keys.length === 1 && keys[0] === 'value') { + if (keys.length === 2 && keys[0] === 'value') { pipelineParameters[propertyName] = propertyVal; } else { jobParameters[propertyName] = propertyVal; diff --git a/app/components/pipeline-event-row/template.hbs b/app/components/pipeline-event-row/template.hbs index 498b2fbea..93f31b366 100644 --- a/app/components/pipeline-event-row/template.hbs +++ b/app/components/pipeline-event-row/template.hbs @@ -155,10 +155,10 @@ {{#each-in this.pipelineParameters as |pName pVal|}}
  • - {{pName}} + {{pName}}: - :{{pVal.value}} + {{pVal.value}}
  • {{/each-in}} @@ -175,10 +175,10 @@ {{#each-in parameters as |pName pVal|}}
  • - {{pName}} + {{pName}}: - :{{pVal.value}} + {{pVal.value}}
  • {{/each-in}}