Skip to content

Commit

Permalink
fix(ui): workflow not rendering bad integration_id key name (#3894)
Browse files Browse the repository at this point in the history
1. Description
1. Related issues
1. About tests
1. Mentions

@ovh/cds
  • Loading branch information
richardlt authored and bnjjj committed Jan 29, 2019
1 parent ab562e9 commit 74b56c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/shared/workflow/wnode/pipeline/node.pipeline.html
Expand Up @@ -11,7 +11,7 @@
<i class="ui icon warning sign orange"></i>
</div>
<div *ngIf="noderun && noderun.subnumber" class="count">
{{ noderun?.subnumber }}
{{noderun?.subnumber}}
</div>
</div>
<div class="details">
Expand All @@ -32,7 +32,7 @@
<div *ngIf="node.context.project_integration_id" class="item ellipsis">
<a (click)="$event.stopPropagation()" [routerLink]="['/project', project.key]" [queryParams]="{tab: 'integrations'}"
title="{{ 'common_integration_title' | translate}}{{workflow.project_integrations[node.context.project_integration_id].name}}">
{{workflow.project_integrations[node.context.project__id].name}}
{{workflow.project_integrations[node.context.project_integration_id].name}}
</a>
</div>
</div>
Expand Down

0 comments on commit 74b56c8

Please sign in to comment.