diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-24 15:05:02 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-24 15:05:02 -0500 |
commit | 055f321b809d107e54de3b9a121853d20b314ad8 (patch) | |
tree | 7d2d44f053ba839f52ebb793eb02eaa689b32902 /src/client/views/DocComponent.tsx | |
parent | 9056d45e85244674c8a8b639402f09f974bf66b5 (diff) |
fixed issue with dataDoc in text box comment link following and doc annotatable component
Diffstat (limited to 'src/client/views/DocComponent.tsx')
-rw-r--r-- | src/client/views/DocComponent.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx index 61b1f9e0f..f4e830a48 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -58,7 +58,8 @@ export function DocAnnotatableComponent<P extends DocAnnotatableProps, T>(schema //TODO This might be pretty inefficient if doc isn't observed, because computed doesn't cache then @computed get Document(): T { return schemaCtor(this.props.Document); } @computed get layoutDoc() { return Doc.Layout(this.props.Document); } - @computed get dataDoc() { return this.props.Document[DataSym]; } + @computed get dataDoc() { return this.props.DataDoc && (this.props.Document.isTemplateForField || this.props.Document.isTemplateDoc) ? this.props.DataDoc : this.props.Document[DataSym]; } + _annotationKey: string = "annotations"; public set annotationKey(val: string) { this._annotationKey = val; } |