aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/drawingBoard/service-planning/duplicate/duplicate-vnf.component.html
blob: c5f43b9c826dc8ef95471d3c1e8ad83b2389d35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div>
  <div>
    <span style="font-weight: bold;">
        Please select the number of additional instances you want to add of this node.
    </span>
  </div>
  <div>
    <span style="font-weight: bold;">
        Important: VID will duplicate this node including its children.
    </span>
  </div>

  <div class="duplicate-number">
    <select class="quantity-select" [(ngModel)]="duplicateNumber" name="duplicate" [attr.data-tests-id]="'duplicate-amount-vfmodules'" id="duplicate-select" (change)="onDuplicateNumberChange()">
      <option *ngFor="let item of duplicateOptions" [value]="item">{{item}}</option>
    </select>
  </div>
  <!--TODO max -->
</div>