aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/interface-operation/operation-creator/param-row/param-row.component.html
blob: 86d7628c17970bdceb18a2f496ef9de4b1be2e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="cell">
    <input
        type="text"
        data-tests-id="inputParamName"
        [(ngModel)]="param.paramName" />
</div>

<ui-element-dropdown
    class="cell"
    data-tests-id="inputParamProperty"
    [values]="inputProps"
    [(value)]="param.paramId">
</ui-element-dropdown>

<div class="cell remove">
    <span
        class="sprite-new delete-item-icon"
        data-tests-id="removeInputParam"
        (click)="onRemoveParam(param)">
    </span>
</div>