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:
Chelsea Shaw 2021-10-04 11:53:24 -06:00 committed by GitHub
parent 77e8f0f9c2
commit b4f0c416f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

3
changelog/12646.txt Normal file
View file

@ -0,0 +1,3 @@
```release-note:bug
ui: Fix bug where edit role form on auth method is invalid by default
```

View file

@ -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();
}),