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
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
When the user clears the input field, the parser returns an empty string instead of null. This may cause problems when the controller expects the ng-model to be an object.
I fixed this changing the line 3719, inside the parser function:
if(!inputValue){// Reset in case user had typed something previously.// An empty string is not always the best value to returnmodelCtrl.$setValidity('editable',true);returnnull;