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 afb501a0d4
commit c84bdbf1f6
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();
}),