diff options
author | Sarah Abouzainah <sabouzainah.ext@orange.com> | 2020-09-30 14:53:50 +0200 |
---|---|---|
committer | Sarah Abouzainah <sabouzainah.ext@orange.com> | 2020-09-30 14:53:50 +0200 |
commit | 661d7a5acca219bb7c6196dfb2ef934c70d1f144 (patch) | |
tree | 7ff9fc39637c64c31a4b8f8216f80ead5ba973db /cds-ui/designer-client/src/app/modules/feature-modules/packages | |
parent | db9eee076faac066ff337193a9211d28cd206711 (diff) |
Add Reuired and Optional checkbox to mapping table
Issue-ID: CCSDK-2795
Signed-off-by: Sarah Abouzainah <sabouzainah.ext@orange.com>
Change-Id: I81f5a1f7da38ca44ade8d14ffffde209a4e05eee
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages')
-rw-r--r-- | cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.html b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.html index 870770ac5..3cac1edd5 100644 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.html +++ b/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/templ-mapp-creation/templ-mapp-creation.component.html @@ -170,6 +170,13 @@ (click)="selectProp(dict.name)"></td> --> </td> <td> + <div class="custom-control custom-checkbox reuiredInput"> + <input type="checkbox" class="custom-control-input" + id="customCheck-{{dict.name}}" [checked]="selectedProps.has(dict.name)" + (click)="selectProp(dict.name)"> + <label class="custom-control-label" for="customCheck-{{dict.name}}"></label> + </div> + <img *ngIf="dict.definition?.property?.required" src="/assets/img/icon-required-yes.svg"> <img *ngIf="!dict.definition?.property?.required" |