Skip to content

Commit b2a093f

Browse files
committed
chore: fix e2e test in phantomjs
1 parent 9011b83 commit b2a093f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/core/vdom/helpers/normalize-scoped-slots.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function normalizeScopedSlots (
3434
}
3535
// avoriaz seems to mock a non-extensible $scopedSlots object
3636
// and when that is passed down this would cause an error
37-
if (Object.isExtensible(slots)) {
37+
if (slots && Object.isExtensible(slots)) {
3838
(slots: any)._normalized = res
3939
}
4040
def(res, '$stable', slots ? !!slots.$stable : true)

0 commit comments

Comments
 (0)