diff options
author | bobzel <zzzman@gmail.com> | 2020-08-13 12:07:07 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-13 12:07:07 -0400 |
commit | 122642c8f53ae37f67c92313490b247f0af154ba (patch) | |
tree | 831678090769232cf24812c2d3fbe7525434c3c1 /src/client/views/nodes/DocumentView.tsx | |
parent | 5ff1c779fc1caad98c27b64f4cf8731b4e35e316 (diff) | |
parent | 10193f97295d3fd4917030561be1e50c4e9b0696 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 0088e265e..d92dc0ec2 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -763,7 +763,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu Doc.AreProtosEqual(this.props.Document, Doc.UserDoc()) && moreItems.push({ description: "Toggle Always Show Link End", event: () => Doc.UserDoc()["documentLinksButton-hideEnd"] = !Doc.UserDoc()["documentLinksButton-hideEnd"], icon: "eye" }); } - moreItems.push({ description: "Close", event: this.deleteClicked, icon: "trash" }); + moreItems.push({ description: "Close", event: this.deleteClicked, icon: "times" }); !more && cm.addItem({ description: "More...", subitems: moreItems, icon: "hand-point-right" }); cm.moveAfter(cm.findByDescription("More...")!, cm.findByDescription("OnClick...")!); |