Aria Minaei 2022-04-10 20:16:32 +02:00
parent b2714ca876
commit 679629def8

View file

@ -143,7 +143,9 @@ export default class SheetObjectTemplate {
const propConfig = getPropConfigByPath(this.config, pathToProp) const propConfig = getPropConfigByPath(this.config, pathToProp)
if (!propConfig || !isPropConfSequencable(propConfig)) continue const isSequencable = propConfig && isPropConfSequencable(propConfig)
if (!isSequencable) continue
arrayOfIds.push({pathToProp, trackId: trackId!}) arrayOfIds.push({pathToProp, trackId: trackId!})
} }