diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-30 21:01:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-30 21:01:23 -0400 |
| commit | f76fcfc24e128d0de898928b5a5b1abdee656c4f (patch) | |
| tree | a4819debe1b8d874abe7f4f44cb92dc82ac790ed /src/client/views/nodes/DocumentLinksButton.tsx | |
| parent | d116f51faf21351c0a40258b2ba1f9146a5ab25e (diff) | |
| parent | d69eaadf58687070e3e3649747ffa0447d3e7964 (diff) | |
Merge pull request #823 from browngraphicslab/acls_uv
ACL Refresh
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.tsx')
| -rw-r--r-- | src/client/views/nodes/DocumentLinksButton.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.tsx b/src/client/views/nodes/DocumentLinksButton.tsx index 8b48acf23..ddfb3cc34 100644 --- a/src/client/views/nodes/DocumentLinksButton.tsx +++ b/src/client/views/nodes/DocumentLinksButton.tsx @@ -274,7 +274,8 @@ export class DocumentLinksButton extends React.Component<DocumentLinksButtonProp width: this.props.InMenu ? "20px" : "30px", height: this.props.InMenu ? "20px" : "30px", backgroundColor: DocumentLinksButton.StartLink ? "" : "grey", opacity: DocumentLinksButton.StartLink ? "" : "50%", - border: DocumentLinksButton.StartLink ? "" : "none" + border: DocumentLinksButton.StartLink ? "" : "none", + cursor: DocumentLinksButton.StartLink ? "pointer" : "default" }} onPointerDown={DocumentLinksButton.StartLink ? this.completeLink : emptyFunction} onClick={e => DocumentLinksButton.StartLink ? DocumentLinksButton.finishLinkClick(e.clientX, e.clientY, DocumentLinksButton.StartLink, this.props.View.props.Document, true, this.props.View) : emptyFunction} /> : (null) |
