Commit e2d3e85b authored by Michail Tzanatos's avatar Michail Tzanatos
Browse files

update product offering characteristics display

parent 39e3648a
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@
                                                                        
                                                                        <div class="d-flex flex-column">
                                                                            <strong>{{char.name}}</strong>
                                                                            <small class="text-muted" *ngIf="char.description">{{char.description}}</small>
                                                                            <i *ngIf="char.valueType">{{char.valueType}}</i>
                                                                        </div>
                                                                        
                                                                        <div class="ml-auto mr-3 text-muted" *ngIf="char.productSpecCharacteristicValue?.length > 0">
@@ -204,6 +204,7 @@

                                                                <ng-template matExpansionPanelContent>
                                                                    <div class="pt-3 pb-3">
                                                                        <p *ngIf="char.description">{{char.description}}</p>
                                                                        <div *ngIf="!char.productSpecCharacteristicValue || char.productSpecCharacteristicValue.length === 0">
                                                                            <p class="text-muted font-italic">
                                                                                This characteristic has no pre-defined values.
+1 −0
Original line number Diff line number Diff line
@@ -203,6 +203,7 @@ export class EditProductOfferingsComponent implements OnInit {
      // }
    } else {
      this.selectedCharacteristics.delete(char.name);
      this.selectedCharValues.set(char.name, []); 
    }
    this.editForm.markAsDirty();
  }