diff options
author | bobzel <zzzman@gmail.com> | 2023-12-16 23:50:48 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-16 23:50:48 -0500 |
commit | 9c7004b98b91952ce4ce6eb8127e1d3f9452e6b7 (patch) | |
tree | bd86bc57a5a23634d2c9fd37236889600a07e907 | |
parent | b0872130aca36c790e4279866582af224ed763ba (diff) |
restored infoUI that had been commented out.
-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 311890ee3..1f4688729 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1434,7 +1434,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection return anchor; }; - infoUI = () => (this.Document.annotationOn ? null : null); // <CollectionFreeFormInfoUI Document={this.Document} Freeform={this} />); + infoUI = () => (this.Document.annotationOn ? null : <CollectionFreeFormInfoUI Document={this.Document} Freeform={this} />); componentDidMount() { this._props.setContentView?.(this); |