Skip to content

Commit

Permalink
UI: VAULT-17699 Fix masked input bug (#21531)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiannaquach authored Jun 30, 2023
1 parent f1c6ab4 commit d01a3c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
3 changes: 3 additions & 0 deletions changelog/21531.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
ui: Fixes styling of private key input when configuring an SSH key
```
8 changes: 1 addition & 7 deletions ui/app/templates/components/configure-ssh-secret.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,7 @@
Private key
</label>
<div class="control">
<MaskedInput
@name="privateKey"
id="privateKey"
class="input"
@value={{@model.privateKey}}
@onChange={{mut @model.privateKey}}
/>
<MaskedInput @name="privateKey" id="privateKey" @value={{@model.privateKey}} @onChange={{mut @model.privateKey}} />
</div>
</div>
<div class="field">
Expand Down

0 comments on commit d01a3c1

Please sign in to comment.