diff options
author | mehekj <mehek.jethani@gmail.com> | 2023-03-06 17:54:29 -0500 |
---|---|---|
committer | mehekj <mehek.jethani@gmail.com> | 2023-03-06 17:54:29 -0500 |
commit | 1d07b09c90861d002139a0232e5aa1c1eba5e114 (patch) | |
tree | b0cbe99896f393c47eeb680764eba632f4d9eded /src/client/views/nodes/LabelBox.tsx | |
parent | b55a757175051457c9260f80a1de937901f5cfff (diff) | |
parent | 4c2584baf8bae0cde714c832b0768d3c08864422 (diff) |
Merge branch 'master' into schema-mehek
Diffstat (limited to 'src/client/views/nodes/LabelBox.tsx')
-rw-r--r-- | src/client/views/nodes/LabelBox.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/nodes/LabelBox.tsx b/src/client/views/nodes/LabelBox.tsx index a2143f629..33fab6873 100644 --- a/src/client/views/nodes/LabelBox.tsx +++ b/src/client/views/nodes/LabelBox.tsx @@ -36,8 +36,6 @@ export class LabelBox extends ViewBoxBaseComponent<FieldViewProps & LabelBoxProp this._timeout && clearTimeout(this._timeout); } - getAnchor = (addAsAnnotation: boolean) => this.rootDoc; - getTitle() { return this.rootDoc['title-custom'] ? StrCast(this.rootDoc.title) : this.props.label ? this.props.label : typeof this.rootDoc[this.fieldKey] === 'string' ? StrCast(this.rootDoc[this.fieldKey]) : StrCast(this.rootDoc.title); } |