aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-11-29 15:41:10 -0500
committerbobzel <zzzman@gmail.com>2023-11-29 15:41:10 -0500
commit412e4aa10e0fab8a949c78e851efdc68661dd522 (patch)
treea945ec733aee4a078b2a57c88c5d9e2723bb7e9e /src/client/views/nodes/DocumentView.tsx
parent872dc82886f8111da1bdfd282ac2a78ec3bdc1f6 (diff)
fixes for following links to parts of templates. turned off
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r--src/client/views/nodes/DocumentView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index 98b021f69..103e68aed 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -1294,10 +1294,10 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps
}
}
@computed get highlighting() {
- return this.props.styleProvider?.(this.layoutDoc, this.props, StyleProp.Highlighting);
+ return this.props.styleProvider?.(this.Document, this.props, StyleProp.Highlighting);
}
@computed get borderPath() {
- return this.props.styleProvider?.(this.layoutDoc, this.props, StyleProp.BorderPath);
+ return this.props.styleProvider?.(this.Document, this.props, StyleProp.BorderPath);
}
render() {
TraceMobx();