diff --git a/theatre/core/src/sheetObjects/SheetObjectTemplate.ts b/theatre/core/src/sheetObjects/SheetObjectTemplate.ts index 0ee0f0d..dee21fd 100644 --- a/theatre/core/src/sheetObjects/SheetObjectTemplate.ts +++ b/theatre/core/src/sheetObjects/SheetObjectTemplate.ts @@ -143,7 +143,9 @@ export default class SheetObjectTemplate { const propConfig = getPropConfigByPath(this.config, pathToProp) - if (!propConfig || !isPropConfSequencable(propConfig)) continue + const isSequencable = propConfig && isPropConfSequencable(propConfig) + + if (!isSequencable) continue arrayOfIds.push({pathToProp, trackId: trackId!}) }