You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
try{awaitthis.changeset.validate((changes)=>FormSchema.validate(changes));this.changeset.removeError(path);// << what is this method?}catch(e){this.changeset.addError(e.path,{value: this.changeset.get(e.path),validation: e.message});}
But even the README of validated-changeset does not mention this method. By looking at the other methods of the validated.ts file, it seems like validated-changeset README is missing the documentation on removeError and removeErrors?
The text was updated successfully, but these errors were encountered:
While going through the READM on ember-changeset we noticed following lines:
We tried to look for said function in ember-changeset repo, but apart from README and test, there were no results. Then we found out that said method is actually defined on validated-changeset.
But even the README of validated-changeset does not mention this method. By looking at the other methods of the
validated.ts
file, it seems like validated-changeset README is missing the documentation onremoveError
andremoveErrors
?The text was updated successfully, but these errors were encountered: