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:
parent
ae0389ca89
commit
9bfb3ec4b2
|
@ -31,6 +31,7 @@ export default Ember.Controller.extend(ModalFunctionality, {
|
||||||
this._paramValidation
|
this._paramValidation
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
this.notifyPropertyChange("paramValidation");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue