diff options
| author | bob <bcz@cs.brown.edu> | 2019-08-01 16:04:43 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-08-01 16:04:43 -0400 |
| commit | 64d25bd7a92daa4a8b9ee69f0eabd88e5cbeeca5 (patch) | |
| tree | 1a5827ea1dfc4f074deaedef63357ccbd33ac8d2 /src/client | |
| parent | 4f09fdb59b71cc945c6af9ff25ea164e7f9d5f13 (diff) | |
cleaned up detaillayout for pivot viewer.
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 9cbc652b9..90f67c54e 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -456,7 +456,7 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) { const width = Cast(viewDef.width, "number"); const height = Cast(viewDef.height, "number"); const fontSize = Cast(viewDef.fontSize, "number"); - if ([text, x, y, z, width, height].some(val => val === undefined)) { + if ([text, x, y, width, height].some(val => val === undefined)) { return undefined; } |
