diff options
| author | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-27 16:59:36 -0500 |
|---|---|---|
| committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-27 16:59:36 -0500 |
| commit | b049149fcf852d8a83338a24341083653fecff89 (patch) | |
| tree | 57004216d4b1f842c131d164e4c77ab026e9955f /src/client/documents | |
| parent | bb768ca2a9274d07ef4618e527452dcdd6cd430d (diff) | |
added UI responsiveness for remote image upload routine
Diffstat (limited to 'src/client/documents')
| -rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index ac643f91f..a7f939d7d 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -324,7 +324,7 @@ export namespace Docs { // whatever options pertain to this specific prototype const options = { title, type, baseProto: true, ...defaultOptions, ...(template.options || {}) }; options.layout = layout.view.LayoutString(layout.dataField); - let doc = Doc.assign(new Doc(prototypeId, true), { layoutKey: "layout", ...options }); + const doc = Doc.assign(new Doc(prototypeId, true), { layoutKey: "layout", ...options }); return doc; } |
