diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-06 14:06:16 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-06 14:06:16 -0500 |
| commit | d622486b343e69640dd749d124f6c2da9850dc10 (patch) | |
| tree | 31018db731ae146c700ebc61a49459177245776d /src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx | |
| parent | 66b24b9d75ff2e90a15de2c81270b154efc7d3ea (diff) | |
maded link dot anchors update whenever they are moved. made text box collections always appear.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx index 218012fe1..044d35eca 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormLinksView.tsx @@ -91,13 +91,11 @@ export class CollectionFreeFormLinksView extends React.Component { } render() { - return ( - <div className="collectionfreeformlinksview-container"> - <svg className="collectionfreeformlinksview-svgCanvas"> - {SelectionManager.GetIsDragging() ? (null) : this.uniqueConnections} - </svg> - {this.props.children} - </div> - ); + return <div className="collectionfreeformlinksview-container"> + <svg className="collectionfreeformlinksview-svgCanvas"> + {SelectionManager.GetIsDragging() ? (null) : this.uniqueConnections} + </svg> + {this.props.children} + </div>; } }
\ No newline at end of file |
