FIX: Ensure edit modal validation works on first opening (#96)

(Ember's `defineProperty` no longer sees to fire the notifyPropertyChange event, so we need to do it manually)
This commit is contained in:
David Taylor 2021-12-02 14:27:50 +00:00 committed by GitHub
parent ae0389ca89
commit 9bfb3ec4b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ export default Ember.Controller.extend(ModalFunctionality, {
this._paramValidation
)
);
this.notifyPropertyChange("paramValidation");
}
},