summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html
diff options
context:
space:
mode:
authorSarah Abouzainah <sabouzainah.ext@orange.com>2020-12-16 02:45:47 +0200
committerShaaban Ebrahim <shaaban.eltanany.ext@orange.com>2020-12-16 10:34:23 +0000
commit98f2cd31c4a81dab41b8a9fd0e527a2a184e90df (patch)
treea756d7c779ab34aaae226ffdc77bb0d14e62baff /cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html
parentf38e495d47e69b5203940e1f3eb76145c2a30e83 (diff)
Add Deploy status icon and fix Script form design
Issue-ID: CCSDK-2320 Signed-off-by: Sarah Abouzainah <sabouzainah.ext@orange.com> Change-Id: I485436bf9c98ed24cfa23a808620d12ff571e456
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html')
-rw-r--r--cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html
index b824058d4..2e121326a 100644
--- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html
+++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages-dashboard/package-list/package-list.component.html
@@ -29,12 +29,12 @@
<div class="col-10 pr-0">
<a class="card-title" [routerLink]="['/packages/package', bluePrint.id]"
(click)="testDispatch(bluePrint)">
+ <img *ngIf="bluePrint.published.includes('Y')" class="icon-deployed" src="/assets/img/icon-deploy.svg">
<!-- <img class="icon-deployed" src="/assets/img/icon-deploy.svg"> -->
<p class="packageName" tooltip="{{bluePrint.artifactName}}" placement="bottom">
{{bluePrint.artifactName}}</p>
<span class="package-version">v{{bluePrint.artifactVersion}}</span>
- <button *ngIf="bluePrint.published.includes('Y')" type="button"
- class="dot"><i class="glyphicon glyphicon-ok"></i></button>
+
</a>
</div>