diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-07 22:48:37 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-07 22:48:37 -0400 |
| commit | d6bbd8bd52231ffaea6d0f01c9e1447087e17914 (patch) | |
| tree | 886d4d4ecf8b17c1bbf6548c242ff15ff737411f /src/client/views/collections | |
| parent | b02cfed890d9d95a8f45bbc93d688bd3311dd387 (diff) | |
code cleanup
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/PropertiesView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/PropertiesView.tsx b/src/client/views/collections/collectionFreeForm/PropertiesView.tsx index 15900aa33..baa32e59b 100644 --- a/src/client/views/collections/collectionFreeForm/PropertiesView.tsx +++ b/src/client/views/collections/collectionFreeForm/PropertiesView.tsx @@ -248,7 +248,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> { } @observable transform: Transform = Transform.Identity(); - getTransform = () => { return this.transform; } + getTransform = () => this.transform; propertiesDocViewRef = (ref: HTMLDivElement) => { const observer = new _global.ResizeObserver(action((entries: any) => { const cliRect = ref.getBoundingClientRect(); |
