rusackas commented on pull request #11979: URL: https://github.com/apache/incubator-superset/pull/11979#issuecomment-742336041
@nikolagigic The error seems to be the `toString` trying to chew on a `null` in `DataTableControl.tsx`. We should fix that, and it might be good to add an `<ErrorBoundary>` somewhere in all of this so the whole page doesn't crash in the first place. As for the fix, we can either check if the value is null, or (if it's useful) use `String.valueOf(value)` instead of `value.toString()` which would take the `null` and return the string `"null"` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
