Merge pull request #27 from juniorxsound/main
This commit is contained in:
commit
f9817a5fc9
1 changed files with 9 additions and 13 deletions
|
@ -174,21 +174,17 @@ export default class SheetObjectTemplate {
|
||||||
* Not available in core.
|
* Not available in core.
|
||||||
*/
|
*/
|
||||||
getMapOfValidSequenceTracks_forStudio(): IDerivation<IPropPathToTrackIdTree> {
|
getMapOfValidSequenceTracks_forStudio(): IDerivation<IPropPathToTrackIdTree> {
|
||||||
if (process.env.NODE_ENV !== 'production') {
|
return this._cache.get('getMapOfValidSequenceTracks_forStudio', () =>
|
||||||
return this._cache.get('getMapOfValidSequenceTracks_forStudio', () =>
|
this.getArrayOfValidSequenceTracks().map((arr) => {
|
||||||
this.getArrayOfValidSequenceTracks().map((arr) => {
|
let map = {}
|
||||||
let map = {}
|
|
||||||
|
|
||||||
for (const {pathToProp, trackId} of arr) {
|
for (const {pathToProp, trackId} of arr) {
|
||||||
set(map, pathToProp, trackId)
|
set(map, pathToProp, trackId)
|
||||||
}
|
}
|
||||||
|
|
||||||
return map
|
return map
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
return new ConstantDerivation({})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getDefaultsAtPointer(
|
getDefaultsAtPointer(
|
||||||
|
|
Loading…
Reference in a new issue