diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-20 18:18:25 -0500 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-20 18:18:25 -0500 |
commit | 778d79a3236c623a5985ef5bd9b5ac5c195ff8a9 (patch) | |
tree | 805ad3f3f59e058632986c2812ab3e7f6404eabc /src/client/views/nodes/DocumentView.tsx | |
parent | cc2cbf44ba5c30a70bad2ffd7a57d2c6d17d0e4e (diff) |
layout key fix
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index c58362f6c..13aa049db 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -764,7 +764,6 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu if (typeof layoutKey === "string") { return layoutKey; } - // return "layout"; const fallback = Cast(this.props.Document.layoutKey, "string"); return typeof fallback === "string" ? fallback : "layout"; } |