Backport of UI: VAULT-17699 Fix masked input bug into release/1.14.x (#21537)
Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
This commit is contained in:
parent
eef9e493e3
commit
cf7c8bc9dc
|
@ -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 New Issue