diff options
author | bob <bcz@cs.brown.edu> | 2020-01-29 17:06:59 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-01-29 17:06:59 -0500 |
commit | 7c27e6502037caf1aee3eb9e30b4e0572ce095a1 (patch) | |
tree | 363b3fd982c23e3473f51508bd1fde9a16bdb829 /src/client/apis/google_docs/GooglePhotosClientUtils.ts | |
parent | 631006eb233e901d8c18bed936b4d160cbbd7cb6 (diff) |
added custom narrative types. fixed scrolling ambiguity with stackviews. can create metdata from stackingview
Diffstat (limited to 'src/client/apis/google_docs/GooglePhotosClientUtils.ts')
-rw-r--r-- | src/client/apis/google_docs/GooglePhotosClientUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/apis/google_docs/GooglePhotosClientUtils.ts b/src/client/apis/google_docs/GooglePhotosClientUtils.ts index 21cd20e14..7e5d5fe1b 100644 --- a/src/client/apis/google_docs/GooglePhotosClientUtils.ts +++ b/src/client/apis/google_docs/GooglePhotosClientUtils.ts @@ -340,7 +340,7 @@ export namespace GooglePhotos { const url = data.url.href; const target = Doc.MakeAlias(source); const description = parseDescription(target, descriptionKey); - await DocumentView.makeCustomViewClicked(target, undefined); + await DocumentView.makeCustomViewClicked(target, undefined, Docs.Create.FreeformDocument); media.push({ url, description }); } if (media.length) { |