shouldUpdateState hook
const form = this.store.select(['my-form-state-path']).form
.bind(myForm)
.shouldUpdateState(this.shouldUpdateState);
shouldUpdateState = (params: ShoulUpdateStateParams) => {
return true;
}ShouldUpdateStateParams:
Last updated