Skip to content

Commit

Permalink
fix(ui): edit custom action with key parameter display input correctly (
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjjj committed Feb 3, 2020
1 parent 7e47749 commit 54379fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/parameter/value/parameter.value.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</sui-select-option>
</sui-select>
</ng-container>
<ng-container *ngIf="keys && keys.ssh && editableValue && !keyExist(editableValue)">
<ng-container *ngIf="!keys || (editableValue && keys && keys.ssh && !keyExist(editableValue))">
<input type="text" [(ngModel)]="editableValue" (change)="valueChanged()" (keydown)="sendValueChanged()"
name="value">
</ng-container>
Expand Down

0 comments on commit 54379fd

Please sign in to comment.