mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00: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:
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();
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user