Skip to content

Commit f5f31a3

Browse files
Merge pull request #93 from eele94/master
pull of undefined fix
2 parents 2fd255f + 913b7cf commit f5f31a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vuedraggable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
},
111111

112112
isCloning () {
113-
return (!!this.options) && (this.options.group !== null) && (this.options.group.pull === 'clone')
113+
return (!!this.options) && (this.options.group !== null) && (this.options.group !== undefined) && (this.options.group.pull === 'clone')
114114
},
115115

116116
realList () {

0 commit comments

Comments
 (0)