fix: resolve issue when inspecting null

This commit is contained in:
Forbes Lindesay 2019-04-23 12:55:26 +01:00
parent 077509c50e
commit 95bcd71511

View File

@ -81,7 +81,7 @@ class Inspect extends React.Component<{ name?: string; value: any }, { expanded:
</View>
);
}
if (typeof value === 'object' && !(value instanceof RegExp)) {
if (value && typeof value === 'object' && !(value instanceof RegExp)) {
if (name) {
return (
<>