Skip to content

Commit

Permalink
Auth method role edit form should be valid by default (#12646) (#12732)
Browse files Browse the repository at this point in the history
* isFormInvalid should be false by default and update on keyup

* Add changelog
  • Loading branch information
hashishaw committed Oct 4, 2021
1 parent 3f2084f commit 2c8b314
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog/12646.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
ui: Fix bug where edit role form on auth method is invalid by default
```
2 changes: 1 addition & 1 deletion ui/app/components/generated-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}),
Expand Down

0 comments on commit 2c8b314

Please sign in to comment.