diff options
author | bobzel <zzzman@gmail.com> | 2024-09-04 17:48:13 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-04 17:48:13 -0400 |
commit | df5217eea01b6ee3ce03ceede030306d05f19c58 (patch) | |
tree | bc78c59a43055c162a81016d59b9f725169c29fe /src/client/util/DocumentManager.ts | |
parent | c674b67913ecfae6f99749db411d39f8f0d5b164 (diff) |
updated calendars to support times of events and to render evdnts at the correct time.
Diffstat (limited to 'src/client/util/DocumentManager.ts')
-rw-r--r-- | src/client/util/DocumentManager.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts index 83b83240e..5ae292760 100644 --- a/src/client/util/DocumentManager.ts +++ b/src/client/util/DocumentManager.ts @@ -269,8 +269,8 @@ export class DocumentManager { if (options.openLocation?.includes(OpenWhere.lightbox)) { // even if we found the document view, if the target is a lightbox, we try to open it in the lightbox to preserve lightbox semantics (eg, there's only one active doc in the lightbox) const target = DocCast(targetDoc.annotationOn, targetDoc); - const contextView = this.getDocumentView(DocCast(target.embedContainer)); - if (contextView?.ComponentView?.addDocTab?.(target, options.openLocation)) { + const compView = this.getDocumentView(DocCast(target.embedContainer))?.ComponentView; + if ((compView?.addDocTab ?? compView?._props.addDocTab)?.(target, options.openLocation)) { await new Promise<void>(waitres => { setTimeout(() => waitres()); }); |