diff options
| author | bobzel <zzzman@gmail.com> | 2025-01-08 15:03:49 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-01-08 15:03:49 -0500 |
| commit | f6a2df5bf15a3139e7fe35acc7fbf9d49b33d279 (patch) | |
| tree | 8d3903e43d381f904aa646c5448e4367aae3c49f /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | 5a21aa2a25d780d5c93d27b7d3ce5af314bf90b9 (diff) | |
get drawing prompt for firefly from title, then from gpt. fix rendering freeform icons to ignore tags and other docview chrome. fixed refStrength for creating images from properties view.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -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 14b9ff4c3..20b91b6e4 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1866,7 +1866,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection } updateIcon = (usePanelDimensions?: boolean) => { - const contentDiv = this.DocumentView?.().ContentDiv; + const contentDiv = this._mainCont; return !contentDiv ? new Promise<void>(res => res()) : UpdateIcon( |
