We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When my data set has null values I am getting an isValid exception. I've traced it back to the is-valid-moment-object helper:
module.exports = function(val) { return typeof val.isValid=='function' && val.isValid(); }
My hack was to add (null!==val) to the return:
return (null!==val) && typeof val.isValid=='function' && val.isValid();
Use the jsfiddle to recreate the issue. Simply change one of tableData's property values to null and run:jsfiddle
Could be a better way to address this, but without change how my app returns data, this was the simplest method. Anxious to hear any feedback.
Thanks!
The text was updated successfully, but these errors were encountered:
fix issue #18
9745a71
Thanks. Fixed it.
Sorry, something went wrong.
Awesome tool. Glad I could help!
matfish2
No branches or pull requests
When my data set has null values I am getting an isValid exception. I've traced it back to the is-valid-moment-object helper:
module.exports = function(val) { return typeof val.isValid=='function' && val.isValid(); }
My hack was to add (null!==val) to the return:
return (null!==val) && typeof val.isValid=='function' && val.isValid();
Use the jsfiddle to recreate the issue. Simply change one of tableData's property values to null and run:jsfiddle
Could be a better way to address this, but without change how my app returns data, this was the simplest method. Anxious to hear any feedback.
Thanks!
The text was updated successfully, but these errors were encountered: