Commit d1f8e6bf authored by Christos Tranoris's avatar Christos Tranoris
Browse files

Merge branch 'develop' into parent-child-characteristics

parents 5a886eb1 f8db4939
Loading
Loading
Loading
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
+2 −3
Original line number Diff line number Diff line
@@ -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>

+1 −1
Original line number Diff line number Diff line
@@ -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];
          }
        }
+1 −1
Original line number Diff line number Diff line
@@ -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>