Remove NODE_ENV conditional so it shows sequence timeline when NODE_ENV is production too
This commit is contained in:
parent
732975d8ef
commit
9c5906cce9
1 changed files with 9 additions and 13 deletions
|
@ -174,21 +174,17 @@ export default class SheetObjectTemplate {
|
|||
* Not available in core.
|
||||
*/
|
||||
getMapOfValidSequenceTracks_forStudio(): IDerivation<IPropPathToTrackIdTree> {
|
||||
if (process.env.NODE_ENV !== 'production') {
|
||||
return this._cache.get('getMapOfValidSequenceTracks_forStudio', () =>
|
||||
this.getArrayOfValidSequenceTracks().map((arr) => {
|
||||
let map = {}
|
||||
return this._cache.get('getMapOfValidSequenceTracks_forStudio', () =>
|
||||
this.getArrayOfValidSequenceTracks().map((arr) => {
|
||||
let map = {}
|
||||
|
||||
for (const {pathToProp, trackId} of arr) {
|
||||
set(map, pathToProp, trackId)
|
||||
}
|
||||
for (const {pathToProp, trackId} of arr) {
|
||||
set(map, pathToProp, trackId)
|
||||
}
|
||||
|
||||
return map
|
||||
}),
|
||||
)
|
||||
} else {
|
||||
return new ConstantDerivation({})
|
||||
}
|
||||
return map
|
||||
}),
|
||||
)
|
||||
}
|
||||
|
||||
getDefaultsAtPointer(
|
||||
|
|
Loading…
Reference in a new issue