diff --git a/changelog/12646.txt b/changelog/12646.txt new file mode 100644 index 000000000000..e4f9385f7f44 --- /dev/null +++ b/changelog/12646.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Fix bug where edit role form on auth method is invalid by default +``` \ No newline at end of file diff --git a/ui/app/components/generated-item.js b/ui/app/components/generated-item.js index c237d0e18a5f..4152e7f093a7 100644 --- a/ui/app/components/generated-item.js +++ b/ui/app/components/generated-item.js @@ -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(); }),