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.

This commit is contained in:
Sondissimo
2023-04-28 16:35:30 +02:00
parent 4847fc6f7a
commit 3d9100f2d1

View File

@@ -1,3 +1,4 @@
<ng-container *ngIf="script.parameters.length > 0">
<div class="form-group" *ngIf="script">
<label>{{'process.new.select-parameters' | translate}}</label>
<ds-parameter-select
@@ -9,3 +10,4 @@
(removeParameter)="removeParameter(i)"
(changeParameter)="updateParameter($event, i)"></ds-parameter-select>
</div>
</ng-container>