Skip to content
New issue

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

Fixes #396 #397

Merged
merged 8 commits into from
Sep 11, 2018
2 changes: 1 addition & 1 deletion src/components/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ export default {
let result = obj;
const splitter = selector.split('.');
for (let i = 0; i < splitter.length; i++) {
if (typeof result === 'undefined') {
if (typeof result === 'undefined' || result === null) {
return undefined;
}
result = result[splitter[i]];
Expand Down