diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-26 15:12:28 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-26 15:12:28 -0500 |
| commit | daa1e3ddf585f5fe237c100504130a3eae204252 (patch) | |
| tree | a74b132d3f6b8e62db67a30aca4e336925f50cca /src/client/views/nodes/LinkAnchorBox.tsx | |
| parent | fce6c26e2f62ffc21702a2edc64e0ee00828825e (diff) | |
fixed serialization error handling to not kill Dash - bad list items prevented tabs from being created. cleaned up document fields a little more - switched layers to _layerTags, got rid of a couple unused fields.
Diffstat (limited to 'src/client/views/nodes/LinkAnchorBox.tsx')
| -rw-r--r-- | src/client/views/nodes/LinkAnchorBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkAnchorBox.tsx b/src/client/views/nodes/LinkAnchorBox.tsx index d76b61502..392565402 100644 --- a/src/client/views/nodes/LinkAnchorBox.tsx +++ b/src/client/views/nodes/LinkAnchorBox.tsx @@ -94,7 +94,7 @@ export class LinkAnchorBox extends ViewBoxBaseComponent<FieldViewProps, LinkAnch openLinkTargetOnRight = (e: React.MouseEvent) => { const alias = Doc.MakeAlias(Cast(this.layoutDoc[this.fieldKey], Doc, null)); alias.isLinkButton = undefined; - alias.layers = undefined; + alias._layerTags = undefined; alias.layoutKey = "layout"; this.props.addDocTab(alias, "add:right"); } |
