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
afb501a0d4
commit
c84bdbf1f6
|
@ -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 New Issue