зеркало из https://github.com/mozilla/Spoke.git
Check if the modified component exist before accessing the prop
This commit is contained in:
Родитель
dcac17be62
Коммит
d6874a521e
|
@ -463,7 +463,10 @@ export default function EditorNodeMixin(Object3DClass) {
|
|||
}
|
||||
|
||||
optionalPropertyExportValue(componentName, propName) {
|
||||
return this.modifiedProperties[componentName][propName] ? this[propName] : undefined;
|
||||
if (this.modifiedProperties[componentName]) {
|
||||
return this.modifiedProperties[componentName][propName] ? this[propName] : undefined;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
set modifiedProperties(object) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче