Loading .gitlab-ci.yml 0 → 100644 +32 −0 Original line number Diff line number Diff line include: - project: osl/code/org.etsi.osl.main ref: main file: - ci-templates/default.yml - ci-templates/build.yml rules: - if: '$CI_COMMIT_REF_NAME == "main"' - project: osl/code/org.etsi.osl.main ref: develop file: - ci-templates/default.yml - ci-templates/build.yml rules: - if: '$CI_COMMIT_REF_NAME == "develop"' - project: osl/code/org.etsi.osl.main ref: develop file: - ci-templates/default.yml - ci-templates/build_unprotected.yml rules: - if: '$CI_COMMIT_REF_NAME != "main" && $CI_COMMIT_REF_NAME != "develop"' angular_build: extends: .angular_build docker_build: extends: .docker_build needs: - angular_build src/app/p_services/admin/inventoryManagement/list-service-inventory/list-service-inventory.component.html +2 −3 Original line number Diff line number Diff line Loading @@ -33,8 +33,7 @@ <ng-container matColumnDef="category"> <th mat-header-cell *matHeaderCellDef mat-sort-header> Category </th> <td mat-cell *matCellDef="let element"> <span *ngIf="element.category === 'ResourceFacingServiceSpecification' ">RFSS</span> <span *ngIf="element.category === 'CustomerFacingServiceSpecification' ">CFSS</span> <span>{{element.category}}</span> </td> </ng-container> Loading src/app/p_services/admin/inventoryManagement/list-service-inventory/list-service-inventory.component.ts +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ export class ListServiceInventoryComponent implements OnInit { this.dataSource.sortingDataAccessor = (item, property): string | number => { switch (property) { case 'serviceDate': return new Date(item.serviceDate).getTime(); case 'category': return item[property] === 'CustomerFacingServiceSpecification' ? 'CFSS': 'RFSS'; // case 'category': return item[property] === 'CustomerFacingServiceSpecification' ? 'CFSS': 'RFSS'; default: return item[property]; } } Loading src/app/p_services/admin/serviceActivationAndConfiguration/preview-service/preview-service.component.html +1 −1 Original line number Diff line number Diff line Loading @@ -357,7 +357,7 @@ There are not any Supporting Resources allocated. </div> <p *ngFor="let resource of service?.supportingResource" class="mb-2"> <a *ngIf="resource.id" routerLink='/resources/resource_inventory/{{resource.id}}'>{{resource.name}}</a> <a *ngIf="resource.id" routerLink='/resources/resource/{{resource.id}}'>{{resource.name}}</a> <span *ngIf="!resource.id">{{resource.name}}</span> </p> </div> Loading Loading
.gitlab-ci.yml 0 → 100644 +32 −0 Original line number Diff line number Diff line include: - project: osl/code/org.etsi.osl.main ref: main file: - ci-templates/default.yml - ci-templates/build.yml rules: - if: '$CI_COMMIT_REF_NAME == "main"' - project: osl/code/org.etsi.osl.main ref: develop file: - ci-templates/default.yml - ci-templates/build.yml rules: - if: '$CI_COMMIT_REF_NAME == "develop"' - project: osl/code/org.etsi.osl.main ref: develop file: - ci-templates/default.yml - ci-templates/build_unprotected.yml rules: - if: '$CI_COMMIT_REF_NAME != "main" && $CI_COMMIT_REF_NAME != "develop"' angular_build: extends: .angular_build docker_build: extends: .docker_build needs: - angular_build
src/app/p_services/admin/inventoryManagement/list-service-inventory/list-service-inventory.component.html +2 −3 Original line number Diff line number Diff line Loading @@ -33,8 +33,7 @@ <ng-container matColumnDef="category"> <th mat-header-cell *matHeaderCellDef mat-sort-header> Category </th> <td mat-cell *matCellDef="let element"> <span *ngIf="element.category === 'ResourceFacingServiceSpecification' ">RFSS</span> <span *ngIf="element.category === 'CustomerFacingServiceSpecification' ">CFSS</span> <span>{{element.category}}</span> </td> </ng-container> Loading
src/app/p_services/admin/inventoryManagement/list-service-inventory/list-service-inventory.component.ts +1 −1 Original line number Diff line number Diff line Loading @@ -48,7 +48,7 @@ export class ListServiceInventoryComponent implements OnInit { this.dataSource.sortingDataAccessor = (item, property): string | number => { switch (property) { case 'serviceDate': return new Date(item.serviceDate).getTime(); case 'category': return item[property] === 'CustomerFacingServiceSpecification' ? 'CFSS': 'RFSS'; // case 'category': return item[property] === 'CustomerFacingServiceSpecification' ? 'CFSS': 'RFSS'; default: return item[property]; } } Loading
src/app/p_services/admin/serviceActivationAndConfiguration/preview-service/preview-service.component.html +1 −1 Original line number Diff line number Diff line Loading @@ -357,7 +357,7 @@ There are not any Supporting Resources allocated. </div> <p *ngFor="let resource of service?.supportingResource" class="mb-2"> <a *ngIf="resource.id" routerLink='/resources/resource_inventory/{{resource.id}}'>{{resource.name}}</a> <a *ngIf="resource.id" routerLink='/resources/resource/{{resource.id}}'>{{resource.name}}</a> <span *ngIf="!resource.id">{{resource.name}}</span> </p> </div> Loading