From f109ba9dc96948211bb2a0a6fe28bf8f236f16a6 Mon Sep 17 00:00:00 2001 From: bobzel Date: Fri, 30 Oct 2020 13:56:23 -0400 Subject: fixed crash on pres trails when closing propertiesBox --- src/client/views/nodes/PresBox.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/client/views/nodes/PresBox.tsx b/src/client/views/nodes/PresBox.tsx index 3c40b61f3..f98f9840a 100644 --- a/src/client/views/nodes/PresBox.tsx +++ b/src/client/views/nodes/PresBox.tsx @@ -482,7 +482,8 @@ export class PresBox extends ViewBoxBaseComponent //stops the presentaton. resetPresentation = () => { this.rootDoc._itemIndex = 0; - for (const doc of this.childDocs) Cast(doc.presentationTargetDoc, Doc, null).opacity = 1; + this.childDocs.map(doc => Cast(doc.presentationTargetDoc, Doc, null)).filter(doc => doc).forEach(doc => doc.opacity = 1); + ///for (const doc of this.childDocs) Cast(doc.presentationTargetDoc, Doc, null).opacity = 1; } @action togglePath = (srcContext: Doc, off?: boolean) => { -- cgit v1.2.3-70-g09d2