diff options
author | Sarah Abouzainah <sabouzainah.ext@orange.com> | 2020-10-20 21:59:14 +0200 |
---|---|---|
committer | Sarah Abouzainah <sabouzainah.ext@orange.com> | 2020-10-20 21:59:14 +0200 |
commit | 521d66607f5cd1129a17cb54f332fe5afd3a2ce6 (patch) | |
tree | 7618d095e7d3a7f15dc5c5920df10cfa37898143 /cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping | |
parent | bb8b842d5d405874c745e054afeffb0e20bc2865 (diff) |
Fix Radio Selection and Undo JointJS changes
Issue-ID: CCSDK-2823
Issue-ID: CCSDK-2780
Signed-off-by: Sarah Abouzainah <sabouzainah.ext@orange.com>
Change-Id: I51b2c80a4d8c338edf90fe1a1bae1640539b5126
Diffstat (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping')
-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, 2 insertions, 5 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 82010db1c..256789586 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 @@ -233,9 +233,6 @@ <input type="text" class="form-control" #velocity (input)="setVelocity(initDataSource.filteredData.indexOf(dict),velocity.value)"> </td> - - - </ng-container> <!-- Data Type Column --> <ng-container matColumnDef="Data Type"> @@ -259,11 +256,11 @@ <!------ View Table-------> <div id="mapping-table-res" [hidden]="mappingRes?.length == 0" class="mapping-table mx-4 my-2"> <div class="mat-elevation-z8"> + <mat-paginator #paginate="matPaginator" [pageSizeOptions]="[10, 25, 50, 100]"></mat-paginator> <mat-form-field class="tableFilter float-right"> <mat-label>Filter</mat-label> <input matInput (keyup)="applyFilter($event)" placeholder="Ex. Mia" #input> - </mat-form-field> - <mat-paginator #paginate="matPaginator" [pageSizeOptions]="[10, 25,50, 100]"></mat-paginator> + </mat-form-field> <table matSortDisableClear mat-table [dataSource]="dataSource" #sort="matSort" matSort> <!-- Required Column --> <ng-container matColumnDef="Required"> |