mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
UI: VAULT-17699 Fix masked input bug (#21531)
This commit is contained in:
parent
f1c6ab41fc
commit
d01a3c1763
2 changed files with 4 additions and 7 deletions
3
changelog/21531.txt
Normal file
3
changelog/21531.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Fixes styling of private key input when configuring an SSH key
|
||||
```
|
||||
|
|
@ -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">
|
||||
|
|
|
|||
Loading…
Reference in a new issue