Skip to content

Commit 3d9100f

Browse files
committed
DURACOM-138 Added a single line in the process-parameters.component.html, we now check if the parameters selector for the process contains at least 1 value, if not, the selector box is not shown.
1 parent 4847fc6 commit 3d9100f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/app/process-page/form/process-parameters/process-parameters.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<ng-container *ngIf="script.parameters.length > 0">
12
<div class="form-group" *ngIf="script">
23
<label>{{'process.new.select-parameters' | translate}}</label>
34
<ds-parameter-select
@@ -9,3 +10,4 @@
910
(removeParameter)="removeParameter(i)"
1011
(changeParameter)="updateParameter($event, i)"></ds-parameter-select>
1112
</div>
13+
</ng-container>

0 commit comments

Comments
 (0)