Null check
parent
5244372d72
commit
664701e23d
|
@ -84,8 +84,13 @@ const EmptySlotTemplate = {
|
|||
}
|
||||
},
|
||||
render(createElement, context) {
|
||||
const content = context.props.template();
|
||||
return [content];
|
||||
if (context.props.template) {
|
||||
const content = context.props.template();
|
||||
return [content];
|
||||
}
|
||||
else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue