diff options
author | bobzel <zzzman@gmail.com> | 2023-12-05 15:57:34 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-05 15:57:34 -0500 |
commit | 5ab2ac4d351f027eecc1889549c339a44b6c73fa (patch) | |
tree | 8b3733db409695fbc019575cd7ce68b45a6617a3 /src | |
parent | 8ee029d51e775b9ec23f501e38e07c061e93addf (diff) |
updatd package-lock
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx index bb7cb0461..2e3bfb1c7 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx @@ -29,8 +29,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm this.firstDoc = docs[0]; this.firstDocPos = { x: NumCast(this.firstDoc.x), y: NumCast(this.firstDoc.y) }; this.message = 'Doc 1'; - } - if (docs.length === 2) { + } else if (docs.length === 2) { console.log('hello 1', docs[0]); console.log('hello 2', docs[1]); this.message = 'Doc 2'; |