mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
Auth method role edit form should be valid by default (#12646)
* isFormInvalid should be false by default and update on keyup * Add changelog
This commit is contained in:
parent
77e8f0f9c2
commit
b4f0c416f2
2 changed files with 4 additions and 1 deletions
3
changelog/12646.txt
Normal file
3
changelog/12646.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Fix bug where edit role form on auth method is invalid by default
|
||||
```
|
||||
|
|
@ -25,7 +25,7 @@ export default Component.extend({
|
|||
flashMessages: service(),
|
||||
router: service(),
|
||||
validationMessages: null,
|
||||
isFormInvalid: true,
|
||||
isFormInvalid: false,
|
||||
props: computed('model', function() {
|
||||
return this.model.serialize();
|
||||
}),
|
||||
|
|
|
|||
Loading…
Reference in a new issue