Clarify a line
https://github.com/theatre-js/theatre/pull/118#discussion_r846634812
This commit is contained in:
parent
b2714ca876
commit
679629def8
1 changed files with 3 additions and 1 deletions
|
@ -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!})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue