Skip to content

Commit db1b074

Browse files
committedMay 10, 2019
fix: s-table tree dislocation #243
1 parent 4b2d3cf commit db1b074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/components/Table/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export default {
287287
return props[k]
288288
}
289289
}
290-
props[k] = this[k]
290+
this[k] && (props[k] = this[k])
291291
return props[k]
292292
})
293293
const table = (

0 commit comments

Comments
 (0)
Failed to load comments.