Skip to content

Commit

Permalink
fix: input style in for variable password (#6207)
Browse files Browse the repository at this point in the history
  • Loading branch information
sguiheux authored Jun 13, 2022
1 parent 27d96ed commit b7ef036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/variable/value/variable.value.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<!-- Password -->
<div *ngSwitchCase="'password'">
<input nz-type type="password" [(ngModel)]="value" (change)="valueChanged()" (keydown)="sendValueChanged()" name="value" [disabled]="disabled">
<input nz-input type="password" [(ngModel)]="value" (change)="valueChanged()" (keydown)="sendValueChanged()" name="value" [disabled]="disabled">
</div>

<!-- Text -->
Expand Down

0 comments on commit b7ef036

Please sign in to comment.