aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DocumentManager.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-15 07:41:42 -0400
committerbobzel <zzzman@gmail.com>2024-05-15 07:41:42 -0400
commit01b0e6d5023ceccbdd3301c165b28d38bf55df94 (patch)
treeca3bab177cf041b04eda296dbe443d230ea55c45 /src/client/util/DocumentManager.ts
parent8c4e20892671946012d28a1db78a2ac63bb369fc (diff)
more cleanup
Diffstat (limited to 'src/client/util/DocumentManager.ts')
-rw-r--r--src/client/util/DocumentManager.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts
index 4b4422a40..95e5f004f 100644
--- a/src/client/util/DocumentManager.ts
+++ b/src/client/util/DocumentManager.ts
@@ -277,7 +277,6 @@ export class DocumentManager {
const childViewIterator = async (docView: DocumentView) => {
const innerDoc = docContextPath.shift();
- // point of interest?
return { focused: false, viewSpec: innerDoc, childDocView: innerDoc && !innerDoc.layout_unrendered ? (await docView.ComponentView?.getView?.(innerDoc, options)) ?? this.getDocumentView(innerDoc) : undefined };
};